mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 07:46:09 +01:00
4830b54ec9
Before faust 2.59.6 faust2sc had a bug, now headers can be provided from the path of the source package.
32 lines
743 B
Nix
32 lines
743 B
Nix
{ faust
|
|
, baseName ? "faust2sc"
|
|
, supercollider
|
|
, makeWrapper
|
|
, python3
|
|
, stdenv
|
|
}@args:
|
|
let
|
|
faustDefaults = faust.faust2ApplBase
|
|
(args // {
|
|
baseName = "${baseName}.py";
|
|
});
|
|
in
|
|
stdenv.mkDerivation (faustDefaults // {
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
propagatedBuildInputs = [ python3 faust supercollider ];
|
|
|
|
postInstall = ''
|
|
mv "$out/bin/${baseName}.py" "$out"/bin/${baseName}
|
|
'';
|
|
|
|
postFixup = ''
|
|
wrapProgram "$out"/bin/${baseName} \
|
|
--append-flags "--import-dir ${faust}/share/faust" \
|
|
--append-flags "--architecture-dir ${faust}/share/faust" \
|
|
--append-flags "--architecture-dir ${faust}/include" \
|
|
--append-flags "-p ${supercollider}" \
|
|
--prefix PATH : "$PATH"
|
|
'';
|
|
})
|