nixpkgs/pkgs/applications/audio/ladspa-sdk/ladspah.nix

27 lines
760 B
Nix
Raw Normal View History

2021-01-15 13:21:58 +00:00
{ lib, stdenv, fetchurl }:
stdenv.mkDerivation rec {
pname = "ladspa.h";
2019-07-23 10:30:08 +00:00
version = "1.15";
src = fetchurl {
url = "https://www.ladspa.org/download/ladspa_sdk_${version}.tgz";
2019-07-23 10:30:08 +00:00
sha256 = "1vgx54cgsnc3ncl9qbgjbmq12c444xjafjkgr348h36j16draaa2";
};
2014-06-05 11:04:18 +00:00
installPhase = ''
2014-06-05 11:04:18 +00:00
mkdir -p $out/include
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";
2021-01-15 13:21:58 +00:00
license = lib.licenses.lgpl2;
maintainers = [ lib.maintainers.magnetophon ];
platforms = lib.platforms.all;
};
}