2015-09-12 12:17:01 +01:00
|
|
|
{ stdenv, lib, fetchurl, kernel, perl, makeWrapper }:
|
2010-08-17 17:53:34 +01:00
|
|
|
|
2017-04-13 13:12:50 +01:00
|
|
|
# BLCR version 0.8.6 should works with linux kernel up to version 3.17.x
|
2012-12-29 14:34:34 +00:00
|
|
|
|
2012-05-16 09:44:20 +01:00
|
|
|
assert stdenv.isLinux;
|
2014-12-27 13:46:29 +00:00
|
|
|
assert builtins.compareVersions "3.18" kernel.version == 1;
|
2010-08-17 17:53:34 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2014-12-27 13:46:29 +00:00
|
|
|
name = "blcr_${kernel.version}-0.8.6pre4";
|
2010-08-17 17:53:34 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2014-12-27 13:46:29 +00:00
|
|
|
url = https://upc-bugs.lbl.gov/blcr-dist/blcr-0.8.6_b4.tar.gz;
|
|
|
|
sha256 = "1a3gdhdnmk592jc652szxgfz8rjd8dax5jwxfsypiqx5lgkj3m21";
|
2010-08-17 17:53:34 +01:00
|
|
|
};
|
|
|
|
|
2011-08-17 17:52:38 +01:00
|
|
|
buildInputs = [ perl makeWrapper ];
|
2010-08-17 17:53:34 +01:00
|
|
|
|
2016-02-26 17:38:15 +00:00
|
|
|
hardeningDisable = [ "pic" ];
|
2016-02-12 03:55:41 +00:00
|
|
|
|
2010-08-17 17:53:34 +01:00
|
|
|
preConfigure = ''
|
|
|
|
configureFlagsArray=(
|
2014-01-05 01:57:21 +00:00
|
|
|
--with-linux=${kernel.dev}/lib/modules/${kernel.modDirVersion}/build
|
|
|
|
--with-kmod-dir=$out/lib/modules/${kernel.modDirVersion}
|
|
|
|
--with-system-map=${kernel}/System.map
|
2010-08-17 17:53:34 +01:00
|
|
|
)
|
|
|
|
'';
|
2011-08-17 17:52:38 +01:00
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
for prog in "$out/bin/"*
|
|
|
|
do
|
|
|
|
wrapProgram "$prog" --prefix LD_LIBRARY_PATH ":" "$out/lib"
|
|
|
|
done
|
|
|
|
'';
|
2016-02-12 03:55:41 +00:00
|
|
|
|
2010-08-17 17:53:34 +01:00
|
|
|
meta = {
|
|
|
|
description = "Berkeley Lab Checkpoint/Restart for Linux (BLCR)";
|
2011-05-13 16:37:13 +01:00
|
|
|
homepage = https://ftg.lbl.gov/projects/CheckpointRestart/;
|
2014-06-19 05:19:00 +01:00
|
|
|
license = stdenv.lib.licenses.gpl2;
|
2011-10-12 13:10:26 +01:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
|
|
|
maintainers = with stdenv.lib.maintainers; [
|
|
|
|
z77z
|
|
|
|
];
|
2010-08-17 17:53:34 +01:00
|
|
|
};
|
|
|
|
}
|