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-13 16:33:17 +0200
committerBart Brouns <bart@magnetopon.nl>2015-05-13 22:09:48 +0200
commit413c17e43099f5f1c0959168b9a827d66e2d4e14 (patch)
tree2e8fc9a0bcd641a76814928de8f76afca6b94fe5 /pkgs/applications/audio/ladspa-plugins
parent020e06e410e0675a2cfa32c8f7bb75368de835d1 (diff)
downloadnixpkgs-413c17e43099f5f1c0959168b9a827d66e2d4e14.tar
nixpkgs-413c17e43099f5f1c0959168b9a827d66e2d4e14.tar.gz
nixpkgs-413c17e43099f5f1c0959168b9a827d66e2d4e14.tar.bz2
nixpkgs-413c17e43099f5f1c0959168b9a827d66e2d4e14.tar.lz
nixpkgs-413c17e43099f5f1c0959168b9a827d66e2d4e14.tar.xz
nixpkgs-413c17e43099f5f1c0959168b9a827d66e2d4e14.tar.zst
nixpkgs-413c17e43099f5f1c0959168b9a827d66e2d4e14.zip
add ladspa-sdk, move ladspaH
Diffstat (limited to 'pkgs/applications/audio/ladspa-plugins')
-rw-r--r--pkgs/applications/audio/ladspa-plugins/ladspah.nix17
1 files changed, 0 insertions, 17 deletions
diff --git a/pkgs/applications/audio/ladspa-plugins/ladspah.nix b/pkgs/applications/audio/ladspa-plugins/ladspah.nix
deleted file mode 100644
index 8c4d8a8c1ed..00000000000
--- a/pkgs/applications/audio/ladspa-plugins/ladspah.nix
+++ /dev/null
@@ -1,17 +0,0 @@
-{ runCommand, fetchurl }:
-
-let
-
-  src = fetchurl {
-    url = http://www.ladspa.org/ladspa_sdk/ladspa.h.txt;
-    sha256 = "1b908csn85ng9sz5s5d1mqk711cmawain2z8px2ajngihdrynb67";
-  };
-
-in
-
-runCommand "ladspa.h"
-  { meta.description = "LADSPA format audio plugins"; }
-  ''
-    mkdir -p $out/include
-    cp ${src} $out/include/ladspa.h
-  ''