2008-03-12 21:46:47 +01:00
|
|
|
{stdenv, fetchurl, perl, zlib, bzip2}:
|
|
|
|
|
2010-06-16 13:50:06 +02:00
|
|
|
let version = "1.14.29"; in
|
|
|
|
|
2008-03-12 21:46:47 +01:00
|
|
|
stdenv.mkDerivation {
|
2010-06-16 13:50:06 +02:00
|
|
|
name = "dpkg-${version}";
|
|
|
|
|
2008-03-12 21:46:47 +01:00
|
|
|
src = fetchurl {
|
2010-06-16 13:50:06 +02:00
|
|
|
url = "mirror://debian/pool/main/d/dpkg/dpkg_${version}.tar.gz";
|
|
|
|
sha256 = "0cynms4vziy957r4zskybbid87sz99vrfy8d999vlhxgc74c2zpa";
|
2008-03-12 21:46:47 +01:00
|
|
|
};
|
|
|
|
|
2008-03-14 14:44:58 +01:00
|
|
|
configureFlags = "--without-dselect --with-admindir=/var/lib/dpkg";
|
2008-03-12 21:46:47 +01:00
|
|
|
|
2008-03-13 15:58:17 +01:00
|
|
|
preConfigure = ''
|
|
|
|
# Can't use substitute pending resolution of NIXPKGS-89.
|
|
|
|
sed -s 's^/usr/bin/perl^${perl}/bin/perl^' -i scripts/dpkg-architecture.pl
|
|
|
|
|
|
|
|
# Nice: dpkg has a circular dependency on itself. Its configure
|
|
|
|
# script calls scripts/dpkg-architecture, which calls "dpkg" in
|
|
|
|
# $PATH. It doesn't actually use its result, but fails if it
|
|
|
|
# isn't present. So make a dummy available.
|
|
|
|
touch $TMPDIR/dpkg
|
|
|
|
chmod +x $TMPDIR/dpkg
|
|
|
|
PATH=$TMPDIR:$PATH
|
2008-03-14 14:44:58 +01:00
|
|
|
|
|
|
|
substituteInPlace src/Makefile.in --replace "install-data-local:" "disabled:"
|
|
|
|
substituteInPlace dpkg-split/Makefile.in --replace "install-data-local:" "disabled:"
|
2008-03-13 15:58:17 +01:00
|
|
|
'';
|
|
|
|
|
2010-06-16 13:50:06 +02:00
|
|
|
buildInputs = [ perl zlib bzip2 ];
|
2008-03-12 21:46:47 +01:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "The Debian package manager";
|
|
|
|
homepage = http://wiki.debian.org/Teams/Dpkg;
|
|
|
|
};
|
|
|
|
}
|