* dpkg updated to 1.4.29.

svn path=/nixpkgs/trunk/; revision=22292
This commit is contained in:
Eelco Dolstra 2010-06-16 11:50:06 +00:00
parent 14e7dc47a5
commit 1b5f7622b7
1 changed files with 7 additions and 5 deletions

View File

@ -1,11 +1,13 @@
{stdenv, fetchurl, perl, zlib, bzip2}:
let version = "1.14.29"; in
stdenv.mkDerivation {
name = "dpkg-1.14.28";
name = "dpkg-${version}";
src = fetchurl {
url = mirror://debian/pool/main/d/dpkg/dpkg_1.14.28.tar.gz;
sha256 = "1k3h1rv2qd6ha6mpifhjkpasd4dzr8l45jvc49p7fldqm4nzyixc";
url = "mirror://debian/pool/main/d/dpkg/dpkg_${version}.tar.gz";
sha256 = "0cynms4vziy957r4zskybbid87sz99vrfy8d999vlhxgc74c2zpa";
};
configureFlags = "--without-dselect --with-admindir=/var/lib/dpkg";