nixpkgs/pkgs/applications/audio/faust/faust2sc.nix
olaf 4830b54ec9 faust2sc: remove workaround
Before faust 2.59.6 faust2sc had a bug, now headers can be provided from the path of the source package.
2023-06-14 23:54:28 +02:00

33 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"
'';
})