nixpkgs/pkgs/tools/filesystems/sandboxfs/default.nix
2020-10-03 08:23:02 +02:00

38 lines
922 B
Nix

{ stdenv
, fetchFromGitHub
, rustPlatform
, fuse
, pkg-config
, installShellFiles
}:
rustPlatform.buildRustPackage rec {
pname = "sandboxfs";
version = "0.2.0";
src = fetchFromGitHub {
owner = "bazelbuild";
repo = pname;
rev = "sandboxfs-${version}";
sha256 = "Ia6rq6FN4abnvLXjlQh4Q+8ra5JThKnC86UXC7s9//U=";
};
cargoSha256 = "sha256-k303TjWG+n+/ZMmko84KJtYb7swuQ1ZJOc4Vq6aOhX0=";
# Issue to add Cargo.lock upstream: https://github.com/bazelbuild/sandboxfs/pull/115
cargoPatches = [ ./Cargo.lock.patch ];
nativeBuildInputs = [ pkg-config installShellFiles ];
buildInputs = [ fuse ];
postInstall = "installManPage man/sandboxfs.1";
meta = with stdenv.lib; {
description = "A virtual file system for sandboxing";
homepage = "https://github.com/bazelbuild/sandboxfs";
license = with licenses; [ asl20 ];
maintainers = with maintainers; [ jeremyschlatter ];
};
}