forked from mirrors/nixpkgs
* bclr: shrink fixes.patch from 3.6 MB (!) to 11 KB by not
including Autoconf/Automake generated code. svn path=/nixpkgs/trunk/; revision=22815
This commit is contained in:
parent
907bb1aac6
commit
20db67154c
|
@ -1,28 +0,0 @@
|
|||
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)";
|
||||
};
|
||||
}
|
|
@ -1,4 +1,4 @@
|
|||
{stdenv, fetchurl, kernel, perl, makeWrapper}:
|
||||
{ stdenv, fetchurl, kernel, perl, makeWrapper, autoconf, automake, libtool }:
|
||||
|
||||
assert stdenv.isLinux;
|
||||
|
||||
|
@ -17,7 +17,7 @@ stdenv.mkDerivation {
|
|||
|
||||
patches = [ ./fixes.patch ];
|
||||
|
||||
buildInputs = [ perl makeWrapper ];
|
||||
buildInputs = [ perl makeWrapper autoconf automake libtool ];
|
||||
|
||||
# this gives "configure: error: unrecognized option: `-d'"
|
||||
/*
|
||||
|
@ -29,6 +29,7 @@ stdenv.mkDerivation {
|
|||
*/
|
||||
|
||||
configurePhase = ''
|
||||
autoreconf
|
||||
./configure --prefix=$out \
|
||||
--with-linux=$(ls -d ${kernel}/lib/modules/*/build) \
|
||||
--with-kmod-dir=$out/lib/modules/$(cd ${kernel}/lib/modules; ls -d 2.6.*) \
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -206,6 +206,7 @@ let
|
|||
else
|
||||
stdenv;
|
||||
|
||||
|
||||
### BUILD SUPPORT
|
||||
|
||||
attrSetToDir = arg : import ../build-support/upstream-updater/attrset-to-dir.nix {
|
||||
|
@ -6584,7 +6585,8 @@ let
|
|||
};
|
||||
|
||||
blcr = import ../os-specific/linux/blcr/0.8.2.nix {
|
||||
inherit fetchurl stdenv kernel perl makeWrapper;
|
||||
inherit fetchurl stdenv kernel perl makeWrapper autoconf automake;
|
||||
libtool = libtool_1_5; # libtool 2 causes a fork bomb
|
||||
};
|
||||
|
||||
exmap = import ../os-specific/linux/exmap {
|
||||
|
|
Loading…
Reference in a new issue