transcode/shell.nix
2023-01-15 19:42:39 +01:00

11 lines
184 B
Nix

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