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