summary refs log tree commit diff
path: root/pkgs/tools/system/fakechroot/default.nix
blob: a652a1e84ef4b242f695da0c42cc3674eac4b987 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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;
  };

}