nixpkgs/pkgs/tools/system/proot/default.nix

47 lines
1.2 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub
, talloc, docutils, swig, python, coreutils, enablePython ? true }:
2019-08-13 21:52:01 +00:00
stdenv.mkDerivation {
pname = "proot";
2019-06-03 16:27:21 +00:00
version = "20190510";
src = fetchFromGitHub {
repo = "proot";
owner = "proot-me";
2019-06-03 16:27:21 +00:00
rev = "803e54d8a1b3d513108d3fc413ba6f7c80220b74";
sha256 = "0gwzqm5wpscj3fchlv3qggf3zzn0v00s4crb5ciwljan1zrqadhy";
};
postPatch = ''
substituteInPlace src/GNUmakefile \
--replace /bin/echo ${coreutils}/bin/echo
2019-03-28 20:57:51 +00:00
# our cross machinery defines $CC and co just right
sed -i /CROSS_COMPILE/d src/GNUmakefile
'';
2021-01-15 09:19:50 +00:00
buildInputs = [ talloc ] ++ lib.optional enablePython python;
nativeBuildInputs = [ docutils ] ++ lib.optional enablePython swig;
enableParallelBuilding = true;
2017-10-01 13:24:18 +00:00
makeFlags = [ "-C src" ];
postBuild = ''
make -C doc proot/man.1
'';
installFlags = [ "PREFIX=${placeholder "out"}" ];
postInstall = ''
install -Dm644 doc/proot/man.1 $out/share/man/man1/proot.1
'';
meta = with lib; {
homepage = "https://proot-me.github.io";
description = "User-space implementation of chroot, mount --bind and binfmt_misc";
platforms = platforms.linux;
license = licenses.gpl2;
maintainers = with maintainers; [ ianwookim makefu veprbl dtzWill ];
};
}