about summary refs log tree commit diff
path: root/pkgs/tools/misc/boxxy/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/tools/misc/boxxy/default.nix')
-rw-r--r--pkgs/tools/misc/boxxy/default.nix43
1 files changed, 0 insertions, 43 deletions
diff --git a/pkgs/tools/misc/boxxy/default.nix b/pkgs/tools/misc/boxxy/default.nix
deleted file mode 100644
index b2596746f7df..000000000000
--- a/pkgs/tools/misc/boxxy/default.nix
+++ /dev/null
@@ -1,43 +0,0 @@
-{ lib
-, rustPlatform
-, fetchFromGitHub
-, pkg-config
-, oniguruma
-, stdenv
-}:
-
-rustPlatform.buildRustPackage rec {
-  pname = "boxxy";
-  version = "0.8.5";
-
-  src = fetchFromGitHub {
-    owner = "queer";
-    repo = "boxxy";
-    rev = "v${version}";
-    hash = "sha256-6pb3yyC4/kpe8S67B3pzsSu3PfQyOWpiYi0JTBQk3lU=";
-  };
-
-  cargoHash = "sha256-PaH0WBBGK37T59RU4ofL0XjYX3cV5lR7WmCw+H/MeuA=";
-
-  nativeBuildInputs = [
-    pkg-config
-  ];
-
-  buildInputs = [
-    oniguruma
-  ];
-
-  env = {
-    RUSTONIG_SYSTEM_LIBONIG = true;
-  };
-
-  meta = with lib; {
-    description = "Puts bad Linux applications in a box with only their files";
-    homepage = "https://github.com/queer/boxxy";
-    license = licenses.mit;
-    maintainers = with maintainers; [ dit7ya figsoda ];
-    platforms = platforms.linux;
-    broken = stdenv.isAarch64;
-    mainProgram = "boxxy";
-  };
-}