2012-11-08 15:13:23 +00:00
|
|
|
{ stdenv, fetchurl, perl, zlib, bzip2, xz, makeWrapper }:
|
2008-03-12 20:46:47 +00:00
|
|
|
|
2016-01-24 19:31:44 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2010-06-16 11:50:06 +00:00
|
|
|
name = "dpkg-${version}";
|
2016-05-02 15:31:07 +00:00
|
|
|
version = "1.18.5";
|
2010-06-16 11:50:06 +00:00
|
|
|
|
2008-03-12 20:46:47 +00:00
|
|
|
src = fetchurl {
|
2012-10-07 14:02:46 +00:00
|
|
|
url = "mirror://debian/pool/main/d/dpkg/dpkg_${version}.tar.xz";
|
2016-05-02 15:31:07 +00:00
|
|
|
sha256 = "01wb8qa4vv2dpd1gv5bm0qzgzb35wn5ij7daqd7b3977l5k6lkh7";
|
2008-03-12 20:46:47 +00:00
|
|
|
};
|
|
|
|
|
2015-04-20 01:54:29 +00:00
|
|
|
postPatch = ''
|
2016-03-23 12:36:31 +00:00
|
|
|
# dpkg tries to force some dependents like debian-devscripts to use
|
2015-04-20 01:54:29 +00:00
|
|
|
# -fstack-protector-strong - not (yet?) a good idea. Disable for now:
|
|
|
|
substituteInPlace scripts/Dpkg/Vendor/Debian.pm \
|
|
|
|
--replace "stackprotectorstrong => 1" "stackprotectorstrong => 0"
|
|
|
|
'';
|
2012-12-04 18:54:44 +00:00
|
|
|
|
2015-11-26 17:44:44 +00:00
|
|
|
configureFlags = [
|
|
|
|
"--disable-dselect"
|
|
|
|
"--with-admindir=/var/lib/dpkg"
|
|
|
|
"PERL_LIBDIR=$(out)/${perl.libPrefix}"
|
|
|
|
];
|
2008-03-12 20:46:47 +00:00
|
|
|
|
2008-03-13 14:58:17 +00:00
|
|
|
preConfigure = ''
|
2015-08-31 13:21:10 +00:00
|
|
|
# Nice: dpkg has a circular dependency on itself. Its configure
|
2008-03-13 14:58:17 +00:00
|
|
|
# script calls scripts/dpkg-architecture, which calls "dpkg" in
|
2015-08-31 13:21:10 +00:00
|
|
|
# $PATH. It doesn't actually use its result, but fails if it
|
|
|
|
# isn't present, so make a dummy available.
|
2008-03-13 14:58:17 +00:00
|
|
|
touch $TMPDIR/dpkg
|
|
|
|
chmod +x $TMPDIR/dpkg
|
|
|
|
PATH=$TMPDIR:$PATH
|
2008-03-14 13:44:58 +00:00
|
|
|
|
2012-11-08 15:13:23 +00:00
|
|
|
for i in $(find . -name Makefile.in); do
|
2012-10-07 14:02:46 +00:00
|
|
|
substituteInPlace $i --replace "install-data-local:" "disabled:" ;
|
|
|
|
done
|
2008-03-13 14:58:17 +00:00
|
|
|
'';
|
|
|
|
|
2015-06-17 17:36:06 +00:00
|
|
|
buildInputs = [ perl zlib bzip2 xz ];
|
2015-06-17 21:24:31 +00:00
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
2012-11-08 15:13:23 +00:00
|
|
|
|
|
|
|
postInstall =
|
|
|
|
''
|
|
|
|
for i in $out/bin/*; do
|
|
|
|
if head -n 1 $i | grep -q perl; then
|
|
|
|
wrapProgram $i --prefix PERL5LIB : $out/${perl.libPrefix}
|
|
|
|
fi
|
2015-04-20 01:54:29 +00:00
|
|
|
done
|
|
|
|
|
|
|
|
mkdir -p $out/etc/dpkg
|
|
|
|
cp -r scripts/t/origins $out/etc/dpkg
|
2012-11-08 15:13:23 +00:00
|
|
|
'';
|
2008-03-12 20:46:47 +00:00
|
|
|
|
2014-01-28 17:11:00 +00:00
|
|
|
meta = with stdenv.lib; {
|
2008-03-12 20:46:47 +00:00
|
|
|
description = "The Debian package manager";
|
|
|
|
homepage = http://wiki.debian.org/Teams/Dpkg;
|
2015-05-28 17:20:29 +00:00
|
|
|
license = licenses.gpl2Plus;
|
2014-01-28 17:11:00 +00:00
|
|
|
platforms = platforms.linux;
|
2015-04-20 01:54:29 +00:00
|
|
|
maintainers = with maintainers; [ mornfall nckx ];
|
2008-03-12 20:46:47 +00:00
|
|
|
};
|
|
|
|
}
|