Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
70 lines
1.3 KiB
Nix
70 lines
1.3 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
libjack2,
|
|
lv2,
|
|
xorg,
|
|
liblo,
|
|
libGL,
|
|
libXcursor,
|
|
pkg-config,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "wolf-shaper";
|
|
version = "1.0.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "wolf-plugins";
|
|
repo = "wolf-shaper";
|
|
tag = "v${version}";
|
|
hash = "sha256-4oi1wnex6eNRHUWXZHnvrmqp4veFuPJqD0YuOhDepg4=";
|
|
fetchSubmodules = true;
|
|
};
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
buildInputs = [
|
|
libjack2
|
|
lv2
|
|
xorg.libX11
|
|
liblo
|
|
libGL
|
|
libXcursor
|
|
];
|
|
|
|
makeFlags = [
|
|
"BUILD_LV2=true"
|
|
"BUILD_DSSI=true"
|
|
"BUILD_VST2=true"
|
|
"BUILD_JACK=true"
|
|
];
|
|
|
|
patchPhase = ''
|
|
patchShebangs ./dpf/utils/generate-ttl.sh
|
|
'';
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/lib/lv2
|
|
mkdir -p $out/lib/dssi
|
|
mkdir -p $out/lib/vst
|
|
mkdir -p $out/bin/
|
|
cp -r bin/wolf-shaper.lv2 $out/lib/lv2/
|
|
cp -r bin/wolf-shaper-dssi* $out/lib/dssi/
|
|
cp -r bin/wolf-shaper-vst.so $out/lib/vst/
|
|
cp -r bin/wolf-shaper $out/bin/
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://wolf-plugins.github.io/wolf-shaper/";
|
|
description = "Waveshaper plugin with spline-based graph editor";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = [ maintainers.magnetophon ];
|
|
platforms = [
|
|
"i686-linux"
|
|
"x86_64-linux"
|
|
];
|
|
mainProgram = "wolf-shaper";
|
|
};
|
|
}
|