mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
Merge pull request #18980 from MostAwesomeDude/gcsfuse
gcsfuse: init at v0.19.0
This commit is contained in:
commit
4d0ae0e754
2 changed files with 27 additions and 0 deletions
25
pkgs/tools/filesystems/gcsfuse/default.nix
Normal file
25
pkgs/tools/filesystems/gcsfuse/default.nix
Normal file
|
@ -0,0 +1,25 @@
|
|||
# This file was generated by go2nix.
|
||||
{ lib, buildGoPackage, fetchgit }:
|
||||
|
||||
buildGoPackage rec {
|
||||
name = "gcsfuse-${version}";
|
||||
version = "v0.19.0";
|
||||
rev = "81281027c0093e3f916a6e611a128ec5c3a12ece";
|
||||
|
||||
goPackagePath = "github.com/googlecloudplatform/gcsfuse";
|
||||
|
||||
src = fetchgit {
|
||||
inherit rev;
|
||||
url = "https://github.com/googlecloudplatform/gcsfuse";
|
||||
sha256 = "1lj9czippsgkhr8y3r7vwxgc8i952v76v1shdv10p43gsxwyyi9a";
|
||||
};
|
||||
|
||||
# TODO: add metadata https://nixos.org/nixpkgs/manual/#sec-standard-meta-attributes
|
||||
meta = {
|
||||
license = lib.licenses.asl20;
|
||||
maintainers = [];
|
||||
homepage = https://cloud.google.com/storage/docs/gcs-fuse;
|
||||
description =
|
||||
"A user-space file system for interacting with Google Cloud Storage";
|
||||
};
|
||||
}
|
|
@ -505,6 +505,8 @@ in
|
|||
SDL = SDL_sixel;
|
||||
};
|
||||
|
||||
gcsfuse = callPackage ../tools/filesystems/gcsfuse { };
|
||||
|
||||
lastpass-cli = callPackage ../tools/security/lastpass-cli { };
|
||||
|
||||
pass = callPackage ../tools/security/pass { };
|
||||
|
|
Loading…
Reference in a new issue