tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
add ladspa-sdk, move ladspaH
Bart Brouns
10 years ago
413c17e4
020e06e4
+31
-1
3 changed files
expand all
collapse all
unified
split
pkgs
applications
audio
ladspa-sdk
default.nix
ladspah.nix
top-level
all-packages.nix
pkgs/applications/audio/ladspa-plugins/ladspah.nix
pkgs/applications/audio/ladspa-sdk/ladspah.nix
+28
pkgs/applications/audio/ladspa-sdk/default.nix
···
1
1
+
{ stdenv, fetchurl }:
2
2
+
stdenv.mkDerivation rec {
3
3
+
name = "ladspa-sdk-${version}";
4
4
+
version = "1.13";
5
5
+
src = fetchurl {
6
6
+
url = "http://www.ladspa.org/download/ladspa_sdk_${version}.tgz";
7
7
+
sha256 = "0srh5n2l63354bc0srcrv58rzjkn4gv8qjqzg8dnq3rs4m7kzvdm";
8
8
+
};
9
9
+
10
10
+
patchPhase = ''
11
11
+
cd src
12
12
+
sed -i 's@/usr/@$(out)/@g' makefile
13
13
+
sed -i 's@-mkdirhier@mkdir -p@g' makefile
14
14
+
'';
15
15
+
16
16
+
meta = {
17
17
+
description = "The SDK for the LADSPA audio plugin standard";
18
18
+
longDescription = ''
19
19
+
The LADSPA SDK, including the ladspa.h API header file,
20
20
+
ten example LADSPA plugins and
21
21
+
three example programs (applyplugin, analyseplugin and listplugins).
22
22
+
'';
23
23
+
homepage = http://www.ladspa.org/ladspa_sdk/overview.html;
24
24
+
license = stdenv.lib.licenses.lgpl2;
25
25
+
maintainers = [ stdenv.lib.maintainers.magnetophon ];
26
26
+
platforms = stdenv.lib.platforms.linux;
27
27
+
};
28
28
+
}
+3
-1
pkgs/top-level/all-packages.nix
···
11384
11384
11385
11385
lash = callPackage ../applications/audio/lash { };
11386
11386
11387
11387
-
ladspaH = callPackage ../applications/audio/ladspa-plugins/ladspah.nix { };
11387
11387
+
ladspaH = callPackage ../applications/audio/ladspa-sdk/ladspah.nix { };
11388
11388
11389
11389
ladspaPlugins = callPackage ../applications/audio/ladspa-plugins {
11390
11390
fftw = fftwSinglePrec;
11391
11391
};
11392
11392
+
11393
11393
+
ladspa-sdk = callPackage ../applications/audio/ladspa-sdk { };
11392
11394
11393
11395
caps = callPackage ../applications/audio/caps { };
11394
11396