1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-20 04:31:52 +00:00

* Added dpkg.

svn path=/nixpkgs/trunk/; revision=11088
This commit is contained in:
Eelco Dolstra 2008-03-12 20:46:47 +00:00
parent a8bc9e0fe4
commit 6ea7522ba2
2 changed files with 23 additions and 0 deletions

View file

@ -0,0 +1,19 @@
{stdenv, fetchurl, perl, zlib, bzip2}:
stdenv.mkDerivation {
name = "dpkg-1.14.16.6";
src = fetchurl {
url = http://ftp.de.debian.org/debian/pool/main/d/dpkg/dpkg_1.14.16.6.tar.gz;
sha256 = "1x2ajz5z6zbyv80g2b2fwylxiz7bdm71z0i98zasfjf87wkx4ryn";
};
configureFlags = "--without-dselect"; # --with-admindir=/var/lib/dpkg
buildInputs = [perl zlib bzip2];
meta = {
description = "The Debian package manager";
homepage = http://wiki.debian.org/Teams/Dpkg;
};
}

View file

@ -5847,6 +5847,10 @@ rec {
inherit fetchurl stdenv SDL;
};
dpkg = import ../tools/package-management/dpkg {
inherit fetchurl stdenv perl zlib bzip2;
};
generator = import ../misc/emulators/generator {
inherit fetchurl stdenv SDL nasm zlib bzip2 libjpeg;
inherit (gtkLibs1x) gtk;