nixpkgs/pkgs/os-specific/linux/blcr/0.6.5.nix
Marc Weber 52647ea3b0 FullDepEntry -> fullDepEntry, PackEntry -> packEntry
svn path=/nixpkgs/trunk/; revision=15662
2009-05-19 23:25:58 +00:00

29 lines
920 B
Nix

args : with args;
assert args ? kernel;
rec {
src = fetchurl {
url = http://ftg.lbl.gov/CheckpointRestart/downloads/blcr-0.6.5.tar.gz ;
sha256 = "195gwxb38wmhzxr0jr349g6pxlwz6id2y6szv2akprv5ypy9py0g";
};
buildInputs = [perl];
configureFlags = [
"--with-linux=$(ls -d ${args.kernel}/lib/modules/*/build)"
"--with-kmod-dir=$out/lib/modules/$(cd ${args.kernel}/lib/modules; ls -d 2.6.*)"
"--with-system-map=${args.kernel}/System.map"
];
preConfigure = fullDepEntry (''
sed -e 's/FASTCALL//' -i configure configure.ac
sed -e 's/int (attach_pid/void (attach_pid/' -i configure configure.ac
'')["doUnpack" "minInit"];
/* doConfigure should be specified separately */
phaseNames = ["preConfigure" "doConfigure" "doMakeInstall"];
name = "blcr-" + version;
meta = {
description = "Berkley Labs Checkpointing/Restarting module (save process tree state)";
};
}