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
nixos/doh-server: init
[NixPkgs.git]
/
pkgs
/
applications
/
audio
/
faust
/
faust2jack.nix
blob
77f9b39102341261184acc2451f2dcfa3687bece
1
{
2
faust,
3
gtk2,
4
jack2,
5
alsa-lib,
6
opencv,
7
libsndfile,
8
which,
9
}:
10
11
faust.wrapWithBuildEnv {
12
13
baseName = "faust2jack";
14
15
scripts = [
16
"faust2jack"
17
"faust2jackconsole"
18
];
19
20
propagatedBuildInputs = [
21
gtk2
22
jack2
23
alsa-lib
24
opencv
25
libsndfile
26
which
27
];
28
29
}