2012-11-08 16:13:23 +01:00
|
|
|
{ stdenv, fetchurl, perl, zlib, bzip2, xz, makeWrapper }:
|
2008-03-12 21:46:47 +01:00
|
|
|
|
2012-11-08 16:13:23 +01:00
|
|
|
let version = "1.16.9"; in
|
2010-06-16 13:50:06 +02:00
|
|
|
|
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 {
|
2012-10-07 16:02:46 +02:00
|
|
|
url = "mirror://debian/pool/main/d/dpkg/dpkg_${version}.tar.xz";
|
2012-11-08 16:13:23 +01:00
|
|
|
sha256 = "0ykby9x4x2zb7rfj30lfjcsrq2q32z2lnsrl8pbdvb2l9sx7zkbk";
|
2008-03-12 21:46:47 +01:00
|
|
|
};
|
|
|
|
|
2012-12-04 19:54:44 +01:00
|
|
|
patches = [ ./cache-arch.patch ];
|
|
|
|
|
2012-11-08 16:13:23 +01:00
|
|
|
configureFlags = "--disable-dselect --with-admindir=/var/lib/dpkg PERL_LIBDIR=$(out)/${perl.libPrefix}";
|
2008-03-12 21:46:47 +01:00
|
|
|
|
2008-03-13 15:58:17 +01:00
|
|
|
preConfigure = ''
|
|
|
|
# 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
|
|
|
|
2012-11-08 16:13:23 +01:00
|
|
|
for i in $(find . -name Makefile.in); do
|
2012-10-07 16:02:46 +02:00
|
|
|
substituteInPlace $i --replace "install-data-local:" "disabled:" ;
|
|
|
|
done
|
2008-03-13 15:58:17 +01:00
|
|
|
'';
|
|
|
|
|
2012-11-08 16:13:23 +01:00
|
|
|
buildInputs = [ perl zlib bzip2 xz makeWrapper ];
|
|
|
|
|
|
|
|
postInstall =
|
|
|
|
''
|
|
|
|
for i in $out/bin/*; do
|
|
|
|
if head -n 1 $i | grep -q perl; then
|
|
|
|
wrapProgram $i --prefix PERL5LIB : $out/${perl.libPrefix}
|
|
|
|
fi
|
|
|
|
done # */
|
|
|
|
'';
|
2008-03-12 21:46:47 +01:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "The Debian package manager";
|
|
|
|
homepage = http://wiki.debian.org/Teams/Dpkg;
|
2012-11-08 16:13:23 +01:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2008-03-12 21:46:47 +01:00
|
|
|
};
|
|
|
|
}
|