Add fakechroot

This commit is contained in:
Jaka Hudoklin 2014-01-31 14:25:26 +01:00 committed by Rok Garbas
parent 6cf926c38e
commit c3a81a6991
2 changed files with 22 additions and 0 deletions

View File

@ -0,0 +1,20 @@
{stdenv, fetchurl}:
stdenv.mkDerivation rec {
name = "fakechroot-${version}";
version = "2.17.2";
src = fetchurl {
url = "https://github.com/dex4er/fakechroot/archive/${version}.tar.gz";
md5 = "e614f62972efa4654fc780ae7e4affad";
};
meta = with stdenv.lib; {
homepage = https://github.com/dex4er/fakechroot;
description = "Give a fake chroot environment through LD_PRELOAD";
license = licenses.lgpl21;
maintainers = with maintainers; [offline];
platforms = platforms.linux;
};
}

View File

@ -899,6 +899,8 @@ let
fakeroot = callPackage ../tools/system/fakeroot { };
fakechroot = callPackage ../tools/system/fakechroot { };
fcitx = callPackage ../tools/inputmethods/fcitx { };
fcron = callPackage ../tools/system/fcron { };