1
0
Fork 0
music-transcoder/flake.nix
2025-10-19 14:20:59 +02:00

26 lines
592 B
Nix

{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
flake-utils.url = "github:numtide/flake-utils";
};
outputs = { self, nixpkgs, flake-utils, ... }:
flake-utils.lib.eachDefaultSystem (system:
let
pkgs = import nixpkgs {
inherit system;
};
in
{
devShells.default = pkgs.mkShell rec {
buildInputs = [
pkgs.opusTools
(pkgs.python3.withPackages (python-pkgs: with python-pkgs; [
black
click
]))
];
};
}
);
}