mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
4068703502
Since basically forever, it randomly fails with do not know how to unpack source archive /nix/store/d821jkm8bgkdcv924nk7qr1q06l9is35-x42-plugins-20170428.tar.xz on Hydra. https://hydra.nixos.org/build/62793688
40 lines
1.3 KiB
Nix
40 lines
1.3 KiB
Nix
{ stdenv, fetchurl, pkgconfig
|
|
, libltc, libsndfile, libsamplerate, ftgl, freefont_ttf, libjack2
|
|
, mesa_glu, lv2, gtk2, cairo, pango, fftwFloat, zita-convolver }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "20170428";
|
|
name = "x42-plugins-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "http://gareus.org/misc/x42-plugins/${name}.tar.xz";
|
|
sha256 = "0yi82rak2277x4nzzr5zwbsnha5pi61w975c8src2iwar2b6m0xg";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [ mesa_glu 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
|
|
sed -i 's|/usr/include/zita-convolver.h|${zita-convolver}/include/zita-convolver.h|g' ./convoLV2/Makefile
|
|
'';
|
|
|
|
meta = with stdenv.lib;
|
|
{ description = "Collection of LV2 plugins by Robin Gareus";
|
|
homepage = https://github.com/x42/x42-plugins;
|
|
maintainers = with maintainers; [ magnetophon ];
|
|
license = licenses.gpl2;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|