tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
mbox: cleanup
Sandro Jäckel
4 years ago
371ebd83
7a45ae6d
+9
-10
1 changed file
expand all
collapse all
unified
split
pkgs
tools
security
mbox
default.nix
+9
-10
pkgs/tools/security/mbox/default.nix
···
2
2
3
3
stdenv.mkDerivation {
4
4
pname = "mbox";
5
5
-
version = "20140526";
5
5
+
version = "unstable-2014-05-26";
6
6
7
7
src = fetchFromGitHub {
8
8
owner = "tsgates";
···
28
28
./testall.sh
29
29
'';
30
30
31
31
-
meta = with lib;
32
32
-
{ description = "Lightweight sandboxing mechanism that any user can use without special privileges";
33
33
-
homepage = "http://pdos.csail.mit.edu/mbox/";
34
34
-
maintainers = with maintainers; [ ehmry ];
35
35
-
license = licenses.bsd3;
36
36
-
platforms = [ "x86_64-linux" ];
37
37
-
broken = true;
38
38
-
};
39
39
-
31
31
+
meta = with lib; {
32
32
+
description = "Lightweight sandboxing mechanism that any user can use without special privileges";
33
33
+
homepage = "http://pdos.csail.mit.edu/mbox/";
34
34
+
maintainers = with maintainers; [ ehmry ];
35
35
+
license = licenses.bsd3;
36
36
+
platforms = [ "x86_64-linux" ];
37
37
+
broken = true;
38
38
+
};
40
39
}