Adding fakeroot.

svn path=/nixpkgs/trunk/; revision=25440
This commit is contained in:
Lluís Batlle i Rossell 2011-01-06 10:43:32 +00:00
parent def604cc62
commit eb3d75b740
2 changed files with 21 additions and 0 deletions

View file

@ -0,0 +1,19 @@
{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "fakeroot-1.14.5";
src = fetchurl {
url = http://ftp.de.debian.org/debian/pool/main/f/fakeroot/fakeroot_1.14.5.orig.tar.bz2;
sha256 = "0s5f785qsh057z05l9i5k1h9cbj9x26ki37l4wh4iyabjhschddh";
};
meta = {
homepage = http://fakeroot.alioth.debian.org/;
description = "Give a fake root environment through LD_PRELOAD";
license = "GPLv2+";
maintainers = with stdenv.lib.maintainers; [viric];
platforms = with stdenv.lib.platforms; all;
};
}

View file

@ -606,6 +606,8 @@ let
expect = callPackage ../tools/misc/expect { };
fakeroot = callPackage ../tools/system/fakeroot { };
fcron = callPackage ../tools/system/fcron { # see also cron
};