2017-03-02 03:33:33 +00:00
|
|
|
{ stdenv, fetchurl, fetchpatch, getopt, libcap }:
|
2011-01-06 10:43:32 +00:00
|
|
|
|
2012-09-19 10:48:27 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2018-02-26 05:17:47 +00:00
|
|
|
version = "1.22";
|
2015-10-20 13:40:16 +01:00
|
|
|
name = "fakeroot-${version}";
|
2011-01-06 10:43:32 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2015-10-20 13:40:16 +01:00
|
|
|
url = "http://http.debian.net/debian/pool/main/f/fakeroot/fakeroot_${version}.orig.tar.bz2";
|
2018-02-26 05:17:47 +00:00
|
|
|
sha256 = "1zn67sp066q63vx95r671v0ki878i40a2wa57pmh64k43r56m05x";
|
2011-01-06 10:43:32 +00:00
|
|
|
};
|
|
|
|
|
2017-06-17 10:36:39 +01:00
|
|
|
patches = stdenv.lib.optional stdenv.isLinux ./einval.patch
|
2017-03-02 03:33:33 +00:00
|
|
|
# patchset from brew
|
2017-06-17 10:36:39 +01:00
|
|
|
++ stdenv.lib.optionals stdenv.isDarwin [
|
2017-03-02 03:33:33 +00:00
|
|
|
(fetchpatch {
|
|
|
|
name = "0001-Implement-openat-2-wrapper-which-handles-optional-ar.patch";
|
|
|
|
url = "https://bugs.debian.org/cgi-bin/bugreport.cgi?msg=5;filename=0001-Implement-openat-2-wrapper-which-handles-optional-ar.patch;att=1;bug=766649";
|
|
|
|
sha256 = "1m6ggrqwqy0in264sxqk912vniipiw629dxq7kibakvsswfk6bkk";
|
|
|
|
})
|
|
|
|
(fetchpatch {
|
|
|
|
name = "0002-OS-X-10.10-introduced-id_t-int-in-gs-etpriority.patch";
|
|
|
|
url = "https://bugs.debian.org/cgi-bin/bugreport.cgi?msg=5;filename=0002-OS-X-10.10-introduced-id_t-int-in-gs-etpriority.patch;att=2;bug=766649";
|
|
|
|
sha256 = "0rhayp42x4i1a6yc4d28kpshmf7lrmaprq64zfrjpdn4kbs0rkln";
|
|
|
|
})
|
|
|
|
(fetchpatch {
|
|
|
|
name = "fakeroot-always-pass-mode.patch";
|
|
|
|
url = "https://bugs.debian.org/cgi-bin/bugreport.cgi?att=2;bug=766649;filename=fakeroot-always-pass-mode.patch;msg=20";
|
|
|
|
sha256 = "0i3zaca1v449dm9m1cq6wq4dy6hc2y04l05m9gg8d4y4swld637p";
|
|
|
|
})
|
2017-06-17 10:36:39 +01:00
|
|
|
];
|
2017-03-02 03:33:33 +00:00
|
|
|
|
|
|
|
buildInputs = [ getopt ]
|
|
|
|
++ stdenv.lib.optional (!stdenv.isDarwin) libcap
|
|
|
|
;
|
2012-09-19 10:48:27 +01:00
|
|
|
|
|
|
|
postUnpack = ''
|
|
|
|
for prog in getopt; do
|
|
|
|
sed -i "s@getopt@$(type -p getopt)@g" ${name}/scripts/fakeroot.in
|
|
|
|
done
|
|
|
|
'';
|
|
|
|
|
2011-01-06 10:43:32 +00:00
|
|
|
meta = {
|
|
|
|
homepage = http://fakeroot.alioth.debian.org/;
|
|
|
|
description = "Give a fake root environment through LD_PRELOAD";
|
2014-06-19 05:19:00 +01:00
|
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
2011-01-06 10:43:32 +00:00
|
|
|
maintainers = with stdenv.lib.maintainers; [viric];
|
2017-03-02 03:33:33 +00:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2011-01-06 10:43:32 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|