init ladspaPlugins-git at git-2015-03-04

authored by Bart Brouns and committed by Rok Garbas 32ed6018 2a2448bc

+36
+32
pkgs/applications/audio/ladspa-plugins/git.nix
··· 1 + { stdenv, fetchgit, automake, autoreconfHook, fftw, gettext, ladspaH, libxml2, pkgconfig, perl, perlPackages }: 2 + 3 + stdenv.mkDerivation { 4 + name = "swh-plugins-git-2015-03-04"; 5 + 6 + src = fetchgit { 7 + url = https://github.com/swh/ladspa.git; 8 + rev = "4b8437e8037cace3d5bf8ce6d1d1da0182aba686"; 9 + sha256 = "7d9aa13a064903b330bd52e35c1f810f1c8a253ea5eb4e5a3a69a051af03150e"; 10 + }; 11 + 12 + buildInputs = [ automake autoreconfHook fftw gettext ladspaH libxml2 pkgconfig perl perlPackages.XMLParser ]; 13 + 14 + patchPhase = '' 15 + patchShebangs . 16 + patchShebangs ./metadata/ 17 + cp ${automake}/share/automake-*/mkinstalldirs . 18 + ''; 19 + 20 + configurePhase = '' 21 + autoreconf -i 22 + ./configure --prefix=$out 23 + ''; 24 + 25 + meta = with stdenv.lib; { 26 + homepage = http://plugin.org.uk/; 27 + description = "LADSPA format audio plugins"; 28 + license = licenses.gpl2; 29 + maintainers = [ maintainers.magnetophon ]; 30 + platforms = platforms.linux; 31 + }; 32 + }
+4
pkgs/top-level/all-packages.nix
··· 11622 11622 fftw = fftwSinglePrec; 11623 11623 }; 11624 11624 11625 + ladspaPlugins-git = callPackage ../applications/audio/ladspa-plugins/git.nix { 11626 + fftw = fftwSinglePrec; 11627 + }; 11628 + 11625 11629 ladspa-sdk = callPackage ../applications/audio/ladspa-sdk { }; 11626 11630 11627 11631 caps = callPackage ../applications/audio/caps { };