2021-12-11 11:57:47 +01:00
|
|
|
{ lib, stdenv, fetchurl, perl, zlib, bzip2, xz, zstd
|
|
|
|
, makeWrapper, coreutils, autoreconfHook, pkg-config
|
|
|
|
}:
|
2008-03-12 21:46:47 +01:00
|
|
|
|
2016-01-24 20:31:44 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "dpkg";
|
2021-12-11 11:57:47 +01:00
|
|
|
version = "1.20.9ubuntu2";
|
2010-06-16 13:50:06 +02:00
|
|
|
|
2008-03-12 21:46:47 +01:00
|
|
|
src = fetchurl {
|
2021-12-11 11:57:47 +01:00
|
|
|
url = "mirror://ubuntu/pool/main/d/dpkg/dpkg_${version}.tar.xz";
|
|
|
|
sha256 = "sha256-BuCofGpi9R0cyhvkZqu9IxupqZvZhbE2J/B4wgUqMQw=";
|
2008-03-12 21:46:47 +01:00
|
|
|
};
|
|
|
|
|
2015-11-26 18:44:44 +01:00
|
|
|
configureFlags = [
|
|
|
|
"--disable-dselect"
|
|
|
|
"--with-admindir=/var/lib/dpkg"
|
|
|
|
"PERL_LIBDIR=$(out)/${perl.libPrefix}"
|
2021-01-15 10:19:50 +01:00
|
|
|
(lib.optionalString stdenv.isDarwin "--disable-linker-optimisations")
|
|
|
|
(lib.optionalString stdenv.isDarwin "--disable-start-stop-daemon")
|
2015-11-26 18:44:44 +01:00
|
|
|
];
|
2008-03-12 21:46:47 +01:00
|
|
|
|
2021-12-11 11:57:47 +01:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2008-03-13 15:58:17 +01:00
|
|
|
preConfigure = ''
|
2015-08-31 15:21:10 +02:00
|
|
|
# Nice: dpkg has a circular dependency on itself. Its configure
|
2008-03-13 15:58:17 +01:00
|
|
|
# script calls scripts/dpkg-architecture, which calls "dpkg" in
|
2015-08-31 15:21:10 +02:00
|
|
|
# $PATH. It doesn't actually use its result, but fails if it
|
|
|
|
# isn't present, so make a dummy available.
|
2008-03-13 15:58:17 +01:00
|
|
|
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
|
|
|
'';
|
|
|
|
|
2017-10-28 11:07:43 +02: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\"
|
|
|
|
'';
|
|
|
|
|
2021-12-11 11:57:47 +01:00
|
|
|
buildInputs = [ perl zlib bzip2 xz zstd ];
|
|
|
|
nativeBuildInputs = [ makeWrapper perl autoreconfHook pkg-config ];
|
2012-11-08 16:13:23 +01:00
|
|
|
|
|
|
|
postInstall =
|
|
|
|
''
|
|
|
|
for i in $out/bin/*; do
|
|
|
|
if head -n 1 $i | grep -q perl; then
|
2021-02-24 20:53:45 +01:00
|
|
|
substituteInPlace $i --replace \
|
|
|
|
"${perl}/bin/perl" "${perl}/bin/perl -I $out/${perl.libPrefix}"
|
2012-11-08 16:13:23 +01:00
|
|
|
fi
|
2015-04-20 03:54:29 +02:00
|
|
|
done
|
|
|
|
|
|
|
|
mkdir -p $out/etc/dpkg
|
|
|
|
cp -r scripts/t/origins $out/etc/dpkg
|
2012-11-08 16:13:23 +01:00
|
|
|
'';
|
2008-03-12 21:46:47 +01:00
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2008-03-12 21:46:47 +01:00
|
|
|
description = "The Debian package manager";
|
2020-03-10 19:56:46 +01:00
|
|
|
homepage = "https://wiki.debian.org/Teams/Dpkg";
|
2015-05-28 19:20:29 +02:00
|
|
|
license = licenses.gpl2Plus;
|
2016-09-05 07:14:36 +02:00
|
|
|
platforms = platforms.unix;
|
2020-05-13 20:19:18 +02:00
|
|
|
maintainers = with maintainers; [ siriobalmelli ];
|
2008-03-12 21:46:47 +01:00
|
|
|
};
|
|
|
|
}
|