mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-25 20:34:52 +03:00
init ladspaPlugins-git at git-2015-03-04
This commit is contained in:
parent
2a2448bcb7
commit
32ed601883
32
pkgs/applications/audio/ladspa-plugins/git.nix
Normal file
32
pkgs/applications/audio/ladspa-plugins/git.nix
Normal file
@ -0,0 +1,32 @@
|
||||
{ stdenv, fetchgit, automake, autoreconfHook, fftw, gettext, ladspaH, libxml2, pkgconfig, perl, perlPackages }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "swh-plugins-git-2015-03-04";
|
||||
|
||||
src = fetchgit {
|
||||
url = https://github.com/swh/ladspa.git;
|
||||
rev = "4b8437e8037cace3d5bf8ce6d1d1da0182aba686";
|
||||
sha256 = "7d9aa13a064903b330bd52e35c1f810f1c8a253ea5eb4e5a3a69a051af03150e";
|
||||
};
|
||||
|
||||
buildInputs = [ automake autoreconfHook fftw gettext ladspaH libxml2 pkgconfig perl perlPackages.XMLParser ];
|
||||
|
||||
patchPhase = ''
|
||||
patchShebangs .
|
||||
patchShebangs ./metadata/
|
||||
cp ${automake}/share/automake-*/mkinstalldirs .
|
||||
'';
|
||||
|
||||
configurePhase = ''
|
||||
autoreconf -i
|
||||
./configure --prefix=$out
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = http://plugin.org.uk/;
|
||||
description = "LADSPA format audio plugins";
|
||||
license = licenses.gpl2;
|
||||
maintainers = [ maintainers.magnetophon ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
@ -11622,6 +11622,10 @@ let
|
||||
fftw = fftwSinglePrec;
|
||||
};
|
||||
|
||||
ladspaPlugins-git = callPackage ../applications/audio/ladspa-plugins/git.nix {
|
||||
fftw = fftwSinglePrec;
|
||||
};
|
||||
|
||||
ladspa-sdk = callPackage ../applications/audio/ladspa-sdk { };
|
||||
|
||||
caps = callPackage ../applications/audio/caps { };
|
||||
|
Loading…
Reference in New Issue
Block a user