Unverified Commit 91cbda45 authored by Aleksana's avatar Aleksana Committed by GitHub
Browse files

Merge pull request #317681 from jeremyschlatter/remove-sandboxfs

sandboxfs: remove
parents c2cb8dc3 f13547a8
Loading
Loading
Loading
Loading
+0 −35
Original line number Diff line number Diff line
{ stdenv
, lib
, rustPlatform
, fetchCrate
, pkg-config
, installShellFiles
, fuse
}:

rustPlatform.buildRustPackage rec {
  pname = "sandboxfs";
  version = "0.2.0";

  src = fetchCrate {
    inherit pname version;
    sha256 = "sha256-nrrkFYAf7HqaGFruolNTkXzy4ID6/vipxd+fOCKYARM=";
  };

  cargoSha256 = "sha256-izz10ePmEt2xxOyR4NODIMAcY9d4ODo677mq+DVf4RI=";

  nativeBuildInputs = [ pkg-config installShellFiles ];

  buildInputs = [ fuse ];

  postInstall = "installManPage man/sandboxfs.1";

  meta = with lib; {
    broken = stdenv.isDarwin;
    description = "Virtual file system for sandboxing";
    homepage = "https://github.com/bazelbuild/sandboxfs";
    license = with licenses; [ asl20 ];
    maintainers = with maintainers; [ jeremyschlatter ];
    mainProgram = "sandboxfs";
  };
}
+1 −0
Original line number Diff line number Diff line
@@ -1211,6 +1211,7 @@ mapAliases ({
  ### S ###

  s2n = s2n-tls; # Added 2021-03-03
  sandboxfs = throw "'sandboxfs' has been removed due to being unmaintained, consider using linux namespaces for sandboxing instead"; # Added 2024-06-06
  sane-backends-git = sane-backends; # Added 2021-02-19
  scantailor = scantailor-advanced; # Added 2022-05-26
  schildichat-web = throw ''
+0 −2
Original line number Diff line number Diff line
@@ -12642,8 +12642,6 @@ with pkgs;
  sanctity = callPackage ../tools/misc/sanctity { };
  sandboxfs = callPackage ../tools/filesystems/sandboxfs { };
  sanjuuni = callPackage ../tools/graphics/sanjuuni { };
  sasquatch = callPackage ../tools/filesystems/sasquatch { };