fcad0b0a5a
Some of these should be longDescriptions, but most others just shouldn't contain newlines. E.g. write description = "Bla"; and not description = '' Bla ''; This pollutes "nix-env -qa --description" output. svn path=/nixpkgs/trunk/; revision=14310
29 lines
603 B
Nix
29 lines
603 B
Nix
args: with args;
|
|
let
|
|
src =
|
|
fetchurl {
|
|
url = http://www.ladspa.org/ladspa_sdk/ladspa.h.txt;
|
|
sha256 = "1b908csn85ng9sz5s5d1mqk711cmawain2z8px2ajngihdrynb67";
|
|
};
|
|
in
|
|
let localDefs = builderDefs.passthru.function {
|
|
buildInputs = [];
|
|
inherit src;
|
|
};
|
|
in with localDefs;
|
|
let
|
|
copyFile = FullDepEntry ("
|
|
ensureDir \$out/include
|
|
cp ${src} \$out/include/ladspa.h
|
|
") [minInit defEnsureDir];
|
|
in
|
|
stdenv.mkDerivation {
|
|
name = "ladspa.h";
|
|
builder = writeScript "ladspa.h-builder"
|
|
(textClosure localDefs [copyFile]);
|
|
meta = {
|
|
description = "LADSPA format audio plugins";
|
|
inherit src;
|
|
};
|
|
}
|