python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / filesystems / sandboxfs / default.nix
blobbafa39272727a962f56362ceab55e6f58a546d2c
1 { stdenv
2 , lib
3 , rustPlatform
4 , fetchCrate
5 , pkg-config
6 , installShellFiles
7 , fuse
8 }:
10 rustPlatform.buildRustPackage rec {
11   pname = "sandboxfs";
12   version = "0.2.0";
14   src = fetchCrate {
15     inherit pname version;
16     sha256 = "sha256-nrrkFYAf7HqaGFruolNTkXzy4ID6/vipxd+fOCKYARM=";
17   };
19   cargoSha256 = "sha256-izz10ePmEt2xxOyR4NODIMAcY9d4ODo677mq+DVf4RI=";
21   nativeBuildInputs = [ pkg-config installShellFiles ];
23   buildInputs = [ fuse ];
25   postInstall = "installManPage man/sandboxfs.1";
27   meta = with lib; {
28     broken = stdenv.isDarwin;
29     description = "A virtual file system for sandboxing";
30     homepage = "https://github.com/bazelbuild/sandboxfs";
31     license = with licenses; [ asl20 ];
32     maintainers = with maintainers; [ jeremyschlatter ];
33   };