smap: init at 0.1.12 (#371402)
[NixPkgs.git] / pkgs / applications / audio / ladspa-sdk / ladspah.nix
blobfae714eb19ae3abebd5631955a58803f0cc25fb4
2   lib,
3   stdenv,
4   fetchurl,
5 }:
6 stdenv.mkDerivation rec {
7   pname = "ladspa.h";
8   version = "1.15";
9   src = fetchurl {
10     url = "https://www.ladspa.org/download/ladspa_sdk_${version}.tgz";
11     sha256 = "1vgx54cgsnc3ncl9qbgjbmq12c444xjafjkgr348h36j16draaa2";
12   };
14   installPhase = ''
15     mkdir -p $out/include
16     cp src/ladspa.h $out/include/ladspa.h
17   '';
19   meta = {
20     description = "LADSPA format audio plugins header file";
21     longDescription = ''
22       The ladspa.h API header file from the LADSPA SDK.
23       For the full SDK, use the ladspa-sdk package.
24     '';
25     homepage = "http://www.ladspa.org/ladspa_sdk/overview.html";
26     license = lib.licenses.lgpl2;
27     maintainers = [ lib.maintainers.magnetophon ];
28     platforms = lib.platforms.all;
29   };