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

45 lines
1.2 KiB
Nix

{ stdenv, fetchFromGitHub
, talloc, docutils, swig, python, coreutils, enablePython ? true }:
stdenv.mkDerivation rec {
pname = "proot";
version = "5.1.0.20190305";
src = fetchFromGitHub {
repo = "proot";
owner = "proot-me";
rev = "ff61c86cb26f71c06af22574d9d4cc3a77292781";
sha256 = "0qink34bjv0lshf3c8997w39r8yxgbhxpjbxw47l5xkvimlpc0dl";
};
postPatch = ''
substituteInPlace src/GNUmakefile \
--replace /bin/echo ${coreutils}/bin/echo
'';
buildInputs = [ talloc ] ++ stdenv.lib.optional enablePython python;
nativeBuildInputs = [ docutils ] ++ stdenv.lib.optional enablePython swig;
enableParallelBuilding = true;
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 stdenv.lib; {
homepage = http://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 ];
};
}