mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-29 10:23:29 +00:00
47 lines
1.3 KiB
Nix
47 lines
1.3 KiB
Nix
{ lib, stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "ladspa-sdk";
|
|
version = "1.15";
|
|
src = fetchurl {
|
|
url = "https://www.ladspa.org/download/ladspa_sdk_${version}.tgz";
|
|
sha256 = "1vgx54cgsnc3ncl9qbgjbmq12c444xjafjkgr348h36j16draaa2";
|
|
};
|
|
|
|
sourceRoot = "ladspa_sdk_${version}/src";
|
|
|
|
strictDeps = true;
|
|
|
|
patchPhase = ''
|
|
sed -i 's@/usr/@$(out)/@g' Makefile
|
|
substituteInPlace Makefile \
|
|
--replace /tmp/test.wav $NIX_BUILD_TOP/${sourceRoot}/test.wav
|
|
'';
|
|
|
|
makeFlags = [
|
|
"CC=${stdenv.cc.targetPrefix}cc"
|
|
"CPP=${stdenv.cc.targetPrefix}c++"
|
|
];
|
|
|
|
# The default target also runs tests, which we don't want to do in
|
|
# the build phase as it would break cross.
|
|
buildFlags = [ "targets" ];
|
|
|
|
# Tests try to create and play a sound file. Playing will fail, but
|
|
# it's probably still useful to run the part that creates the file.
|
|
doCheck = true;
|
|
|
|
meta = {
|
|
description = "The SDK for the LADSPA audio plugin standard";
|
|
longDescription = ''
|
|
The LADSPA SDK, including the ladspa.h API header file,
|
|
ten example LADSPA plugins and
|
|
three example programs (applyplugin, analyseplugin and listplugins).
|
|
'';
|
|
homepage = "http://www.ladspa.org/ladspa_sdk/overview.html";
|
|
license = lib.licenses.lgpl2;
|
|
maintainers = [ lib.maintainers.magnetophon ];
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
}
|