add ladspa-sdk, move ladspaH

This commit is contained in:
Bart Brouns
2015-05-13 22:09:48 +02:00
parent 020e06e410
commit 413c17e430
3 changed files with 31 additions and 1 deletions
@@ -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
''