From 413c17e43099f5f1c0959168b9a827d66e2d4e14 Mon Sep 17 00:00:00 2001 From: Bart Brouns Date: Wed, 13 May 2015 16:33:17 +0200 Subject: add ladspa-sdk, move ladspaH --- pkgs/applications/audio/ladspa-sdk/ladspah.nix | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 pkgs/applications/audio/ladspa-sdk/ladspah.nix (limited to 'pkgs/applications/audio/ladspa-sdk/ladspah.nix') diff --git a/pkgs/applications/audio/ladspa-sdk/ladspah.nix b/pkgs/applications/audio/ladspa-sdk/ladspah.nix new file mode 100644 index 000000000000..8c4d8a8c1ed5 --- /dev/null +++ b/pkgs/applications/audio/ladspa-sdk/ladspah.nix @@ -0,0 +1,17 @@ +{ 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 + '' -- cgit 1.4.1