2016-02-06 15:39:30 +03:00
|
|
|
{ stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 15:41:18 +03:00
|
|
|
pname = "ladspa.h";
|
2019-07-23 13:30:08 +03:00
|
|
|
version = "1.15";
|
2010-07-28 15:55:54 +04:00
|
|
|
src = fetchurl {
|
2018-06-28 21:43:35 +03:00
|
|
|
url = "https://www.ladspa.org/download/ladspa_sdk_${version}.tgz";
|
2019-07-23 13:30:08 +03:00
|
|
|
sha256 = "1vgx54cgsnc3ncl9qbgjbmq12c444xjafjkgr348h36j16draaa2";
|
2010-07-28 15:55:54 +04:00
|
|
|
};
|
2014-06-05 15:04:18 +04:00
|
|
|
|
2016-02-06 15:39:30 +03:00
|
|
|
installPhase = ''
|
2014-06-05 15:04:18 +04:00
|
|
|
mkdir -p $out/include
|
2016-02-06 15:39:30 +03:00
|
|
|
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.
|
|
|
|
'';
|
2020-04-01 04:11:51 +03:00
|
|
|
homepage = "http://www.ladspa.org/ladspa_sdk/overview.html";
|
2016-02-06 15:39:30 +03:00
|
|
|
license = stdenv.lib.licenses.lgpl2;
|
|
|
|
maintainers = [ stdenv.lib.maintainers.magnetophon ];
|
|
|
|
platforms = stdenv.lib.platforms.all;
|
|
|
|
};
|
|
|
|
}
|