blob: a0666e33a7060962579e97aeedd147487ca3fb73 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
{
lib,
stdenv,
fetchFromGitHub,
talloc,
pkg-config,
ncurses,
docutils,
swig,
python3,
coreutils,
enablePython ? true,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "proot";
version = "5.4.0";
src = fetchFromGitHub {
repo = "proot";
owner = "proot-me";
rev = "v${finalAttrs.version}";
sha256 = "sha256-Z9Y7ccWp5KEVuo9xfHcgo58XqYVdFo7ck1jH7cnT2KA=";
};
postPatch = ''
substituteInPlace src/GNUmakefile \
--replace /bin/echo ${coreutils}/bin/echo
# our cross machinery defines $CC and co just right
sed -i /CROSS_COMPILE/d src/GNUmakefile
'';
buildInputs = [
ncurses
talloc
]
++ lib.optional enablePython python3;
nativeBuildInputs = [
pkg-config
docutils
]
++ lib.optional enablePython swig;
enableParallelBuilding = true;
makeFlags = [ "--directory=src" ];
postBuild = ''
make --directory=doc proot/man.1
'';
installFlags = [ "PREFIX=${placeholder "out"}" ];
postInstall = ''
install -Dm644 doc/proot/man.1 $out/share/man/man1/proot.1
'';
# proot provides tests with `make -C test` however they do not run in the sandbox
doCheck = false;
meta = {
homepage = "https://proot-me.github.io";
description = "User-space implementation of chroot, mount --bind and binfmt_misc";
platforms = lib.platforms.linux;
license = lib.licenses.gpl2Plus;
maintainers = with lib.maintainers; [
ianwookim
makefu
veprbl
];
mainProgram = "proot";
};
})
|