about summary refs log tree commit diff
path: root/pkgs/tools/security
diff options
context:
space:
mode:
authorAaron Jheng <wentworth@outlook.com>2023-12-21 15:25:22 +0000
committerEmery Hemingway <ehmry@posteo.net>2023-12-24 08:48:59 +0000
commit9b99a22585cb935670c8892fa0fee174dabe2a7d (patch)
treea521dfb295c207c0ff7351d82af7dd477c9dda14 /pkgs/tools/security
parentb0437674626647ea3f35862de3565e128a4eff2c (diff)
mbox: remove
Diffstat (limited to 'pkgs/tools/security')
-rw-r--r--pkgs/tools/security/mbox/default.nix39
1 files changed, 0 insertions, 39 deletions
diff --git a/pkgs/tools/security/mbox/default.nix b/pkgs/tools/security/mbox/default.nix
deleted file mode 100644
index a39d226aac575..0000000000000
--- a/pkgs/tools/security/mbox/default.nix
+++ /dev/null
@@ -1,39 +0,0 @@
-{ lib, stdenv, fetchFromGitHub, openssl, which }:
-
-stdenv.mkDerivation {
-  pname = "mbox";
-  version = "unstable-2014-05-26";
-
-  src = fetchFromGitHub {
-    owner = "tsgates";
-    repo = "mbox";
-    rev = "a131424b6cb577e1c916bd0e8ffb2084a5f73048";
-    sha256 = "06qggqxnzcxnc34m6sbafxwr2p64x65m9zm5wp7pwyarcckhh2hd";
-  };
-
-  buildInputs = [ openssl which ];
-
-  preConfigure = ''
-    cd src
-    cp {.,}configsbox.h
-  '';
-
-  doCheck = true;
-  checkPhase = ''
-    rm tests/test-*vim.sh tests/test-pip.sh
-
-    patchShebangs ./; dontPatchShebags=1
-    sed -i 's|^/bin/||' tests/test-fileops.sh
-
-    ./testall.sh
-  '';
-
-  meta = with lib;    {
-    description = "Lightweight sandboxing mechanism that any user can use without special privileges";
-    homepage = "http://pdos.csail.mit.edu/mbox/";
-    maintainers = with maintainers; [ ehmry ];
-    license = licenses.bsd3;
-    platforms = [ "x86_64-linux" ];
-    broken = true;
-  };
-}