2015-04-22 20:11:31 +00:00
|
|
|
{ stdenv, fetchurl }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "suid-chroot-${version}";
|
2016-01-24 19:31:44 +00:00
|
|
|
version = "1.0.2";
|
2009-07-12 08:10:51 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2015-04-22 20:11:31 +00:00
|
|
|
sha256 = "1a9xqhck0ikn8kfjk338h9v1yjn113gd83q0c50k78xa68xrnxjx";
|
|
|
|
url = "http://myweb.tiscali.co.uk/scottrix/linux/download/${name}.tar.bz2";
|
2009-07-12 08:10:51 +00:00
|
|
|
};
|
|
|
|
|
2015-04-22 20:11:31 +00:00
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace Makefile --replace /usr $out
|
2017-06-28 14:58:36 +00:00
|
|
|
sed -i -e '/chmod u+s/d' Makefile
|
2015-04-22 20:11:31 +00:00
|
|
|
'';
|
2009-07-12 08:10:51 +00:00
|
|
|
|
2015-04-22 20:11:31 +00:00
|
|
|
meta = with stdenv.lib; {
|
2009-07-12 08:10:51 +00:00
|
|
|
description = "Setuid-safe wrapper for chroot";
|
2015-05-28 17:20:29 +00:00
|
|
|
license = licenses.gpl2Plus;
|
2016-08-02 17:50:55 +00:00
|
|
|
platforms = with platforms; unix;
|
2009-07-12 08:10:51 +00:00
|
|
|
};
|
|
|
|
}
|