nixpkgs/pkgs/build-support/deb-package/default.nix
Lluís Batlle i Rossell 3e0708e505 Fixing ttmkfdir, with help of a modification in deb-package.
svn path=/nixpkgs/trunk/; revision=15335
2009-04-27 12:04:11 +00:00

55 lines
1.4 KiB
Nix

args : with args;
let
localDefs = with (builderDefs.passthru.function {src="";});
let
checkFlag = flag : lib.getAttr [flag] false args;
in
builderDefs.passthru.function ({
inherit src;
inherit checkFlag;
buildInputs = [];
configureFlags = [];
makeFlags = if (checkFlag "omitConfigure")
then [" PREFIX=$out "]
else [];
patch = null;
meta = {};
doInstall = if args ? Install then
(FullDepEntry
args.Install
(["doMake"]
++ (lib.getAttr ["extraInstallDeps"] [] args))
)
else FullDepEntry "" ["doMakeInstall"];
debPatch = FullDepEntry ((if args ? patch then ''
gunzip < ${args.patch} | patch -Np1
'' else "")
+''
sed -e 's/-o root//' -i Makefile Makefile.in Makefile.new || true;
sed -e 's/-g root//' -i Makefile Makefile.in Makefile.new || true;
''
+(if (checkFlag "omitFilePatches") then "" else
''
if test -d debian/patches; then
for i in debian/patches/*; do
patch -Np0 -i $i;
done;
fi;
'')
+ (if args ? extraReplacements then
args.extraReplacements
else ""))["minInit" "doUnpack"];
} // args);
in with localDefs;
stdenv.mkDerivation rec {
name = localDefs.name + "deb";
builder = writeScript (name + "-builder")
(textClosure localDefs ([debPatch] ++
(lib.optional (patches != []) "doPatch") ++
(lib.optional (! (checkFlag "omitConfigure")) "doConfigure") ++
[doInstall doForceShare]));
inherit meta;
inherit src;
}