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
slint-lsp: 1.9.1 -> 1.9.2 (#375714)
[NixPkgs.git]
/
pkgs
/
applications
/
audio
/
faust
/
faust2lv2.nix
blob
4a310440ad8a6f8d591e1df7821ca20a9621df39
1
{
2
bash,
3
boost,
4
faust,
5
lv2,
6
qtbase,
7
}:
8
9
faust.wrapWithBuildEnv {
10
11
baseName = "faust2lv2";
12
13
buildInputs = [
14
bash
15
];
16
17
propagatedBuildInputs = [
18
boost
19
lv2
20
qtbase
21
];
22
23
dontWrapQtApps = true;
24
25
preFixup = ''
26
sed -i "/QMAKE=/c\ QMAKE="${qtbase.dev}/bin/qmake"" "$out"/bin/faust2lv2;
27
'';
28
}