2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchurl, perl, zlib, bzip2, xz, makeWrapper, coreutils }:
|
2008-03-12 20:46:47 +00:00
|
|
|
|
2016-01-24 19:31:44 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "dpkg";
|
2021-04-28 07:55:59 +01:00
|
|
|
version = "1.20.9";
|
2010-06-16 12:50:06 +01:00
|
|
|
|
2008-03-12 20:46:47 +00:00
|
|
|
src = fetchurl {
|
2012-10-07 15:02:46 +01:00
|
|
|
url = "mirror://debian/pool/main/d/dpkg/dpkg_${version}.tar.xz";
|
2021-04-28 07:55:59 +01:00
|
|
|
sha256 = "sha256-XOJCgw8hO1Yg8I5sQYOtse9Nydoo0xmIonyHxx/lNM4=";
|
2008-03-12 20:46:47 +00:00
|
|
|
};
|
|
|
|
|
2015-11-26 17:44:44 +00:00
|
|
|
configureFlags = [
|
|
|
|
"--disable-dselect"
|
|
|
|
"--with-admindir=/var/lib/dpkg"
|
|
|
|
"PERL_LIBDIR=$(out)/${perl.libPrefix}"
|
2021-01-15 09:19:50 +00:00
|
|
|
(lib.optionalString stdenv.isDarwin "--disable-linker-optimisations")
|
|
|
|
(lib.optionalString stdenv.isDarwin "--disable-start-stop-daemon")
|
2015-11-26 17:44:44 +00:00
|
|
|
];
|
2008-03-12 20:46:47 +00:00
|
|
|
|
2008-03-13 14:58:17 +00:00
|
|
|
preConfigure = ''
|
2015-08-31 14:21:10 +01: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 14:21:10 +01: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 15:02:46 +01:00
|
|
|
substituteInPlace $i --replace "install-data-local:" "disabled:" ;
|
|
|
|
done
|
2008-03-13 14:58:17 +00:00
|
|
|
'';
|
|
|
|
|
2017-10-28 10:07:43 +01:00
|
|
|
patchPhase = ''
|
|
|
|
patchShebangs .
|
|
|
|
|
|
|
|
# Dpkg commands sometimes calls out to shell commands
|
|
|
|
substituteInPlace lib/dpkg/dpkg.h \
|
|
|
|
--replace '"dpkg-deb"' \"$out/bin/dpkg-deb\" \
|
|
|
|
--replace '"dpkg-split"' \"$out/bin/dpkg-split\" \
|
|
|
|
--replace '"dpkg-query"' \"$out/bin/dpkg-query\" \
|
|
|
|
--replace '"dpkg-divert"' \"$out/bin/dpkg-divert\" \
|
|
|
|
--replace '"dpkg-statoverride"' \"$out/bin/dpkg-statoverride\" \
|
|
|
|
--replace '"dpkg-trigger"' \"$out/bin/dpkg-trigger\" \
|
|
|
|
--replace '"dpkg"' \"$out/bin/dpkg\" \
|
|
|
|
--replace '"debsig-verify"' \"$out/bin/debsig-verify\" \
|
|
|
|
--replace '"rm"' \"${coreutils}/bin/rm\" \
|
|
|
|
--replace '"cat"' \"${coreutils}/bin/cat\" \
|
|
|
|
--replace '"diff"' \"${coreutils}/bin/diff\"
|
|
|
|
'';
|
|
|
|
|
2015-06-17 18:36:06 +01:00
|
|
|
buildInputs = [ perl zlib bzip2 xz ];
|
2019-06-23 16:07:38 +01:00
|
|
|
nativeBuildInputs = [ makeWrapper perl ];
|
2012-11-08 15:13:23 +00:00
|
|
|
|
|
|
|
postInstall =
|
|
|
|
''
|
|
|
|
for i in $out/bin/*; do
|
|
|
|
if head -n 1 $i | grep -q perl; then
|
2021-02-24 19:53:45 +00:00
|
|
|
substituteInPlace $i --replace \
|
|
|
|
"${perl}/bin/perl" "${perl}/bin/perl -I $out/${perl.libPrefix}"
|
2012-11-08 15:13:23 +00:00
|
|
|
fi
|
2015-04-20 02:54:29 +01: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
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2008-03-12 20:46:47 +00:00
|
|
|
description = "The Debian package manager";
|
2020-03-10 18:56:46 +00:00
|
|
|
homepage = "https://wiki.debian.org/Teams/Dpkg";
|
2015-05-28 18:20:29 +01:00
|
|
|
license = licenses.gpl2Plus;
|
2016-09-05 06:14:36 +01:00
|
|
|
platforms = platforms.unix;
|
2020-05-13 19:19:18 +01:00
|
|
|
maintainers = with maintainers; [ siriobalmelli ];
|
2008-03-12 20:46:47 +00:00
|
|
|
};
|
|
|
|
}
|