mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-19 11:00:19 +03:00
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 ];
|
|
}
|