2008-11-25 03:20:41 +01:00
|
|
|
{stdenv, fetchurl, gettext}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2009-03-27 13:13:11 +01:00
|
|
|
name = "checkinstall-1.6.2pre20081116";
|
2008-11-25 03:20:41 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2009-03-27 13:13:11 +01:00
|
|
|
url = http://nixos.org/tarballs/checkinstall-1.6.2pre20081116.tar.bz2;
|
|
|
|
sha256 = "0k8i551rcn2g0jxskq2sgy4m85irdf5zsl2q4w9b7npgnybkzsmb";
|
2008-11-25 03:20:41 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [gettext];
|
|
|
|
|
|
|
|
preBuild = ''
|
|
|
|
makeFlagsArray=(PREFIX=$out)
|
|
|
|
|
|
|
|
substituteInPlace checkinstall --replace /usr/local/lib/checkinstall $out/lib/checkinstall
|
|
|
|
substituteInPlace checkinstallrc-dist --replace /usr/local $out
|
2009-03-27 13:13:11 +01:00
|
|
|
|
|
|
|
substituteInPlace installwatch/create-localdecls \
|
|
|
|
--replace /usr/include/unistd.h ${stdenv.glibc}/include/unistd.h
|
2008-11-25 03:20:41 +01:00
|
|
|
'';
|
|
|
|
|
2008-12-10 18:12:19 +01:00
|
|
|
postInstall =
|
|
|
|
if stdenv.isLinux then
|
|
|
|
# Clear the RPATH, otherwise installwatch.so won't work properly
|
|
|
|
# as an LD_PRELOADed library on applications that load against a
|
|
|
|
# different Glibc.
|
|
|
|
''
|
|
|
|
patchelf --set-rpath "" $out/lib/installwatch.so
|
|
|
|
''
|
|
|
|
else "";
|
|
|
|
|
2008-11-25 03:20:41 +01:00
|
|
|
meta = {
|
|
|
|
homepage = http://checkinstall.izto.org/;
|
|
|
|
description = "A tool for automatically generating Slackware, RPM or Debian packages when doing `make install'";
|
|
|
|
};
|
|
|
|
}
|