65ce0411d8
svn path=/nixpkgs/trunk/; revision=12628
29 lines
920 B
Nix
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)";
|
|
};
|
|
}
|