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