repo.or.cz
/
NixPkgs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
biome: 1.9.2 -> 1.9.3
[NixPkgs.git]
/
pkgs
/
applications
/
misc
/
faircamp
/
test-wav.nix
blob
8a9d2eaa2f35a354e4a4f09ff6f0153a6a351297
1
{ stdenv
2
, faircamp
3
, ffmpeg
4
}:
5
6
stdenv.mkDerivation {
7
name = "faircamp-test-wav";
8
meta.timeout = 60;
9
buildCommand = ''
10
mkdir album
11
${ffmpeg}/bin/ffmpeg -f lavfi -i "sine=frequency=440:duration=1" album/track.wav
12
${faircamp}/bin/faircamp --build-dir $out
13
'';
14
}