hellhound/flake.nix

20 lines
599 B
Nix
Raw Permalink Normal View History

2025-02-10 20:23:20 +01:00
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
utils.url = "github:numtide/flake-utils";
};
outputs = { self, nixpkgs, utils }:
utils.lib.eachDefaultSystem (system:
let
pkgs = import nixpkgs { inherit system; config.allowUnfree = true; };
ffmpreg = pkgs.ffmpeg;
in {
devShell = with pkgs; mkShell {
buildInputs = with pkgs; [ sqlite bun bash yt-dlp mkvtoolnix ffmpreg chromaprint opustags ];
LD_LIBRARY_PATH = lib.makeLibraryPath [ stdenv.cc.cc.lib ];
};
}
);
}