mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 20:03:16 +00:00
cd3c25616d
All packages that were failing on x86_64-darwin are marked broken. I'm assuming here that these are also broken on aarch64-darwin.
35 lines
768 B
Nix
35 lines
768 B
Nix
{ 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 = "A virtual file system for sandboxing";
|
|
homepage = "https://github.com/bazelbuild/sandboxfs";
|
|
license = with licenses; [ asl20 ];
|
|
maintainers = with maintainers; [ jeremyschlatter ];
|
|
};
|
|
}
|