nixpkgs/pkgs/tools/system/suid-chroot/default.nix
Tobias Geerinckx-Rice b7135f496e suid-chroot 1.0.1 -> 1.0.2 (and refactor)
More of a conversion excercise than anything, but here you go.
2015-04-23 01:52:18 +02:00

23 lines
553 B
Nix

{ stdenv, fetchurl }:
let version = "1.0.2"; in
stdenv.mkDerivation rec {
name = "suid-chroot-${version}";
src = fetchurl {
sha256 = "1a9xqhck0ikn8kfjk338h9v1yjn113gd83q0c50k78xa68xrnxjx";
url = "http://myweb.tiscali.co.uk/scottrix/linux/download/${name}.tar.bz2";
};
postPatch = ''
substituteInPlace Makefile --replace /usr $out
'';
meta = with stdenv.lib; {
inherit version;
description = "Setuid-safe wrapper for chroot";
license = with licenses; gpl2Plus;
maintainers = with maintainers; [ nckx ];
};
}