summary refs log tree commit diff
path: root/pkgs/applications/audio/ladspa-plugins
diff options
context:
space:
mode:
authorBart Brouns <bart@magnetopon.nl>2015-05-29 12:46:49 +0200
committerRok Garbas <rok@garbas.si>2015-06-12 15:15:27 +0200
commit32ed6018831954a5c2345ddff7de640521c620a5 (patch)
tree13e86e0f65f2db31d229ece252bf04e6948ee2b1 /pkgs/applications/audio/ladspa-plugins
parent2a2448bcb72c0a5a367a63b0f7b8ffd3453d0e67 (diff)
downloadnixlib-32ed6018831954a5c2345ddff7de640521c620a5.tar
nixlib-32ed6018831954a5c2345ddff7de640521c620a5.tar.gz
nixlib-32ed6018831954a5c2345ddff7de640521c620a5.tar.bz2
nixlib-32ed6018831954a5c2345ddff7de640521c620a5.tar.lz
nixlib-32ed6018831954a5c2345ddff7de640521c620a5.tar.xz
nixlib-32ed6018831954a5c2345ddff7de640521c620a5.tar.zst
nixlib-32ed6018831954a5c2345ddff7de640521c620a5.zip
init ladspaPlugins-git at git-2015-03-04
Diffstat (limited to 'pkgs/applications/audio/ladspa-plugins')
-rw-r--r--pkgs/applications/audio/ladspa-plugins/git.nix32
1 files changed, 32 insertions, 0 deletions
diff --git a/pkgs/applications/audio/ladspa-plugins/git.nix b/pkgs/applications/audio/ladspa-plugins/git.nix
new file mode 100644
index 000000000000..e9ab932a88e4
--- /dev/null
+++ b/pkgs/applications/audio/ladspa-plugins/git.nix
@@ -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;
+  };
+}