mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-06 05:43:17 +00:00
15 lines
281 B
Nix
15 lines
281 B
Nix
|
{ stdenv
|
||
|
, faircamp
|
||
|
, ffmpeg
|
||
|
}:
|
||
|
|
||
|
stdenv.mkDerivation {
|
||
|
name = "faircamp-test-wav";
|
||
|
meta.timeout = 60;
|
||
|
buildCommand = ''
|
||
|
mkdir album
|
||
|
${ffmpeg}/bin/ffmpeg -f lavfi -i "sine=frequency=440:duration=1" album/track.wav
|
||
|
${faircamp}/bin/faircamp --build-dir $out
|
||
|
'';
|
||
|
}
|