nixpkgs/pkgs/tools/package-management/dpkg/default.nix

57 lines
1.6 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, perl, zlib, bzip2, xz, makeWrapper }:
stdenv.mkDerivation rec {
name = "dpkg-${version}";
2017-01-26 02:14:28 +00:00
version = "1.18.18";
src = fetchurl {
url = "mirror://debian/pool/main/d/dpkg/dpkg_${version}.tar.xz";
2017-01-26 02:14:28 +00:00
sha256 = "1xbgjdazcxb9iqrz6jcmy8qwgwggvf6rws2265sh01b6skin32y8";
};
configureFlags = [
"--disable-dselect"
"--with-admindir=/var/lib/dpkg"
"PERL_LIBDIR=$(out)/${perl.libPrefix}"
(stdenv.lib.optionalString stdenv.isDarwin "--disable-linker-optimisations")
(stdenv.lib.optionalString stdenv.isDarwin "--disable-start-stop-daemon")
];
preConfigure = ''
2015-08-31 13:21:10 +00:00
# Nice: dpkg has a circular dependency on itself. Its configure
# 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.
touch $TMPDIR/dpkg
chmod +x $TMPDIR/dpkg
PATH=$TMPDIR:$PATH
for i in $(find . -name Makefile.in); do
substituteInPlace $i --replace "install-data-local:" "disabled:" ;
done
'';
buildInputs = [ perl zlib bzip2 xz ];
nativeBuildInputs = [ 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
2015-04-20 01:54:29 +00:00
done
mkdir -p $out/etc/dpkg
cp -r scripts/t/origins $out/etc/dpkg
'';
2014-01-28 17:11:00 +00:00
meta = with stdenv.lib; {
description = "The Debian package manager";
homepage = http://wiki.debian.org/Teams/Dpkg;
license = licenses.gpl2Plus;
platforms = platforms.unix;
2015-04-20 01:54:29 +00:00
maintainers = with maintainers; [ mornfall nckx ];
};
}