18 lines
228 B
Nix
18 lines
228 B
Nix
|
{ faust
|
||
|
, libjack2
|
||
|
, cargo
|
||
|
, binutils
|
||
|
, gcc
|
||
|
, gnumake
|
||
|
, openssl
|
||
|
, pkg-config
|
||
|
|
||
|
}:
|
||
|
|
||
|
faust.wrapWithBuildEnv {
|
||
|
|
||
|
baseName = "faust2jackrust";
|
||
|
|
||
|
propagatedBuildInputs = [ libjack2 cargo binutils gcc gnumake openssl pkg-config ];
|
||
|
}
|