Merge pull request #19983 from magnetophon/x42-plugins

x42-plugins: 20160619 ->20160825

authored by Frederik Rietdijk and committed by GitHub 83078762 827861f4

+17 -19
+17 -19
pkgs/applications/audio/x42-plugins/default.nix
··· 1 - { stdenv, fetchurl, pkgconfig, fetchgit 2 , libltc, libsndfile, libsamplerate, ftgl, freefont_ttf, libjack2 3 , mesa_glu, lv2, mesa, gtk2, cairo, pango, fftwFloat, zita-convolver }: 4 5 stdenv.mkDerivation rec { 6 - version = "20160619"; 7 name = "x42-plugins-${version}"; 8 9 src = fetchurl { 10 url = "http://gareus.org/misc/x42-plugins/${name}.tar.xz"; 11 - sha256 = "1ald0c5xbfkdq6g5xwyy8wmbi636m3k3gqrq16kbh46g0kld1as9"; 12 }; 13 14 - buildInputs = [ 15 - mesa_glu ftgl freefont_ttf libjack2 libltc libsndfile libsamplerate 16 - lv2 mesa gtk2 cairo pango fftwFloat pkgconfig zita-convolver 17 - ]; 18 19 - makeFlags = [ 20 - "PREFIX=$(out)" 21 - "FONTFILE=${freefont_ttf}/share/fonts/truetype/FreeSansBold.ttf" 22 - "LIBZITACONVOLVER=${zita-convolver}/include/zita-convolver.h" 23 - ]; 24 25 - meta = with stdenv.lib; { 26 - description = "Collection of LV2 plugins by Robin Gareus"; 27 - homepage = https://github.com/x42/x42-plugins; 28 - maintainers = with maintainers; [ magnetophon ]; 29 - license = licenses.gpl2; 30 - platforms = platforms.linux; 31 - }; 32 }
··· 1 + { stdenv, fetchurl, pkgconfig 2 , libltc, libsndfile, libsamplerate, ftgl, freefont_ttf, libjack2 3 , mesa_glu, lv2, mesa, gtk2, cairo, pango, fftwFloat, zita-convolver }: 4 5 stdenv.mkDerivation rec { 6 + version = "20160825"; 7 name = "x42-plugins-${version}"; 8 9 src = fetchurl { 10 url = "http://gareus.org/misc/x42-plugins/${name}.tar.xz"; 11 + sha256 = "13ln5ccmrrc07ykfp040389av60dlgqz1kh6vfjkga6sq7z51msr"; 12 }; 13 14 + buildInputs = [ mesa_glu ftgl freefont_ttf libjack2 libltc libsndfile libsamplerate lv2 mesa gtk2 cairo pango fftwFloat pkgconfig zita-convolver]; 15 16 + makeFlags = [ "PREFIX=$(out)" "FONTFILE=${freefont_ttf}/share/fonts/truetype/FreeSansBold.ttf" ]; 17 18 + patchPhase = '' 19 + patchShebangs ./stepseq.lv2/gridgen.sh 20 + sed -i 's|/usr/include/zita-convolver.h|${zita-convolver}/include/zita-convolver.h|g' ./convoLV2/Makefile 21 + ''; 22 + 23 + meta = with stdenv.lib; 24 + { description = "Collection of LV2 plugins by Robin Gareus"; 25 + homepage = https://github.com/x42/x42-plugins; 26 + maintainers = with maintainers; [ magnetophon ]; 27 + license = licenses.gpl2; 28 + platforms = platforms.linux; 29 + }; 30 }