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
36 lines
930 B
Nix
36 lines
930 B
Nix
args : with args; let
|
|
patch = ./ltrace_0.5-3.diff.gz;
|
|
localDefs = with builderDefs;
|
|
builderDefs.passthru.function {
|
|
src = /* put a fetchurl here */
|
|
fetchurl {
|
|
url = ftp://ftp.debian.org/debian/pool/main/l/ltrace/ltrace_0.5.orig.tar.gz;
|
|
sha256 = "1nbjcnizc0w3p41g7hqf1qiany8qk4xs9g4zrlq4fpxdykdwla3v";
|
|
};
|
|
|
|
buildInputs = [elfutils ];
|
|
configureFlags = [];
|
|
goSrcDir = "
|
|
cd ltrace-*;
|
|
";
|
|
preBuild = FullDepEntry (''
|
|
gunzip < ${patch} | patch -Np1
|
|
sed -e s@-Werror@@ -i Makefile.in
|
|
'')["minInit" "doUnpack"];
|
|
};
|
|
in with localDefs;
|
|
let
|
|
preConfigure = FullDepEntry ("
|
|
sed -e 's@-o root -g root@@' -i Makefile.in;
|
|
") [doUnpack minInit];
|
|
in
|
|
stdenv.mkDerivation rec {
|
|
name = "ltrace-0.5";
|
|
builder = writeScript (name + "-builder")
|
|
(textClosure localDefs [preBuild preConfigure doConfigure doMakeInstall doForceShare]);
|
|
meta = {
|
|
description = "Library call tracer";
|
|
inherit src;
|
|
};
|
|
}
|