45 lines
1.2 KiB
Nix
45 lines
1.2 KiB
Nix
{ stdenv, lib, fetchurl, kernel, perl, makeWrapper }:
|
|
|
|
# BLCR version 0.8.6 should works with linux kernel up to version 3.17.x
|
|
|
|
assert stdenv.isLinux;
|
|
assert builtins.compareVersions "3.18" kernel.version == 1;
|
|
|
|
stdenv.mkDerivation {
|
|
name = "blcr_${kernel.version}-0.8.6pre4";
|
|
|
|
src = fetchurl {
|
|
url = https://upc-bugs.lbl.gov/blcr-dist/blcr-0.8.6_b4.tar.gz;
|
|
sha256 = "1a3gdhdnmk592jc652szxgfz8rjd8dax5jwxfsypiqx5lgkj3m21";
|
|
};
|
|
|
|
buildInputs = [ perl makeWrapper ];
|
|
|
|
hardeningDisable = [ "pic" ];
|
|
|
|
preConfigure = ''
|
|
configureFlagsArray=(
|
|
--with-linux=${kernel.dev}/lib/modules/${kernel.modDirVersion}/build
|
|
--with-kmod-dir=$out/lib/modules/${kernel.modDirVersion}
|
|
--with-system-map=${kernel}/System.map
|
|
)
|
|
'';
|
|
|
|
postInstall = ''
|
|
for prog in "$out/bin/"*
|
|
do
|
|
wrapProgram "$prog" --prefix LD_LIBRARY_PATH ":" "$out/lib"
|
|
done
|
|
'';
|
|
|
|
meta = {
|
|
description = "Berkeley Lab Checkpoint/Restart for Linux (BLCR)";
|
|
homepage = https://ftg.lbl.gov/projects/CheckpointRestart/;
|
|
license = stdenv.lib.licenses.gpl2;
|
|
platforms = stdenv.lib.platforms.linux;
|
|
maintainers = with stdenv.lib.maintainers; [
|
|
z77z
|
|
];
|
|
};
|
|
}
|