2019-06-01 08:43:59 +01:00
|
|
|
{ stdenv, fetchFromGitHub, fetchpatch, autoreconfHook, perl }:
|
2014-01-31 13:25:26 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-06-01 08:43:59 +01:00
|
|
|
pname = "fakechroot";
|
|
|
|
version = "2.20.1";
|
2014-01-31 13:25:26 +00:00
|
|
|
|
2017-02-17 19:20:45 +00:00
|
|
|
src = fetchFromGitHub {
|
2019-06-01 08:43:59 +01:00
|
|
|
owner = "dex4er";
|
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
|
|
|
sha256 = "0xgnwazrmrg4gm30xjxdn6sx3lhqvxahrh6gmy3yfswxc30pmg86";
|
2014-01-31 13:25:26 +00:00
|
|
|
};
|
|
|
|
|
2019-06-01 08:43:59 +01:00
|
|
|
# Use patch from https://github.com/dex4er/fakechroot/pull/46 , remove once merged!
|
|
|
|
# Courtesy of one of our own, @copumpkin!
|
|
|
|
patches = [
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://github.com/dex4er/fakechroot/pull/46/commits/dcc0cfe3941e328538f9e62b2c0b15430d393ec1.patch";
|
|
|
|
sha256 = "1mk8j2njd94s7vf2wggi08xxxzx8dxrvdricl9cbspvkyp715w2m";
|
|
|
|
# Don't bother trying to reconcile conflicts for NEWS entries, as they will continue to occur
|
|
|
|
# and are uninteresting as well as unimportant for our purposes (since NEWS never leaves the build env).
|
|
|
|
excludes = [ "NEWS.md" ];
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2017-09-05 22:26:13 +01:00
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
|
|
buildInputs = [ perl ];
|
2017-02-17 19:20:45 +00:00
|
|
|
|
2014-01-31 13:25:26 +00:00
|
|
|
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;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|