1
0
Fork 0

Music transcoder!!

This commit is contained in:
Honbra 2025-10-19 14:20:59 +02:00
commit e48574b4ce
Signed by: honbra
GPG key ID: B61CC9ADABE2D952
4 changed files with 413 additions and 0 deletions

26
flake.nix Normal file
View file

@ -0,0 +1,26 @@
{
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
]))
];
};
}
);
}