Add shell.nix

This commit is contained in:
fruchti 2023-01-15 19:42:39 +01:00
parent 11e021b43d
commit b687a803e0
2 changed files with 11 additions and 0 deletions

1
.envrc Normal file
View file

@ -0,0 +1 @@
use nix

10
shell.nix Normal file
View file

@ -0,0 +1,10 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
nativeBuildInputs = with pkgs; [
vorbis-tools
flac
ffmpeg
unixtools.xxd
exiftool
];
}