Files
nixpkgs/pkgs/by-name/x4/x42-plugins/package.nix
Dark Steveneq 646b892680
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
push sheeet
2025-10-09 14:15:47 +02:00

82 lines
1.5 KiB
Nix

{
lib,
stdenv,
fetchurl,
pkg-config,
libltc,
libsndfile,
libsamplerate,
ftgl,
freefont_ttf,
libjack2,
libGLU,
lv2,
gtk2,
cairo,
pango,
fftwFloat,
zita-convolver,
}:
stdenv.mkDerivation rec {
pname = "x42-plugins";
version = "20250512";
src = fetchurl {
url = "https://gareus.org/misc/x42-plugins/${pname}-${version}.tar.xz";
hash = "sha256-HBENTb1BGxBDIOWtswCe6t0mEzVNZf65NhLjsfE4KYk=";
};
nativeBuildInputs = [ pkg-config ];
buildInputs = [
libGLU
ftgl
freefont_ttf
libjack2
libltc
libsndfile
libsamplerate
lv2
gtk2
cairo
pango
fftwFloat
zita-convolver
];
# Don't remove this. The default fails with 'do not know how to unpack source archive'
# every now and then on Hydra. No idea why.
unpackPhase = ''
tar xf $src
sourceRoot=$(echo x42-plugins-*)
chmod -R u+w $sourceRoot
'';
makeFlags = [
"PREFIX=$(out)"
"FONTFILE=${freefont_ttf}/share/fonts/truetype/FreeSansBold.ttf"
];
patchPhase = ''
patchShebangs ./stepseq.lv2/gridgen.sh
patchShebangs ./matrixmixer.lv2/genttl.sh
patchShebangs ./matrixmixer.lv2/genhead.sh
'';
enableParallelBuilding = true;
meta = with lib; {
description = "Collection of LV2 plugins by Robin Gareus";
homepage = "https://github.com/x42/x42-plugins";
maintainers = with maintainers; [
magnetophon
orivej
];
license = licenses.gpl2;
platforms = [
"i686-linux"
"x86_64-linux"
];
};
}