add shell.nix

main
Ingolf Wagner 2022-02-07 18:17:12 +01:00
parent bd8dec34e3
commit 0e99e30f33
Signed by: palo
GPG Key ID: 76BF5F1928B9618B
1 changed files with 7 additions and 0 deletions

7
shell.nix Normal file
View File

@ -0,0 +1,7 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = with pkgs; [
lame
sox
];
}