ladspaH: move src to mirror, please also merge in 15.09
This commit is contained in:
parent
5bbf10409e
commit
3b6b47976e
@ -1,17 +1,26 @@
|
|||||||
{ runCommand, fetchurl }:
|
{ stdenv, fetchurl }:
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
let
|
name = "ladspa.h-${version}";
|
||||||
|
version = "1.13";
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = http://www.ladspa.org/ladspa_sdk/ladspa.h.txt;
|
url = "http://http.debian.net/debian/pool/main/l/ladspa-sdk/ladspa-sdk_${version}.orig.tar.gz";
|
||||||
sha256 = "1b908csn85ng9sz5s5d1mqk711cmawain2z8px2ajngihdrynb67";
|
sha256 = "0srh5n2l63354bc0srcrv58rzjkn4gv8qjqzg8dnq3rs4m7kzvdm";
|
||||||
};
|
};
|
||||||
|
|
||||||
in
|
installPhase = ''
|
||||||
|
|
||||||
runCommand "ladspa.h"
|
|
||||||
{ meta.description = "LADSPA format audio plugins"; }
|
|
||||||
''
|
|
||||||
mkdir -p $out/include
|
mkdir -p $out/include
|
||||||
cp ${src} $out/include/ladspa.h
|
cp src/ladspa.h $out/include/ladspa.h
|
||||||
''
|
'';
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "LADSPA format audio plugins header file";
|
||||||
|
longDescription = ''
|
||||||
|
The ladspa.h API header file from the LADSPA SDK.
|
||||||
|
For the full SDK, use the ladspa-sdk package.
|
||||||
|
'';
|
||||||
|
homepage = http://www.ladspa.org/ladspa_sdk/overview.html;
|
||||||
|
license = stdenv.lib.licenses.lgpl2;
|
||||||
|
maintainers = [ stdenv.lib.maintainers.magnetophon ];
|
||||||
|
platforms = stdenv.lib.platforms.all;
|
||||||
|
};
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user