1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-29 17:10:48 +00:00
nixpkgs/pkgs/tools/filesystems/gcsfuse/default.nix

26 lines
671 B
Nix
Raw Normal View History

2016-09-26 08:51:04 +01:00
# This file was generated by go2nix.
2016-09-29 15:48:03 +01:00
{ lib, buildGoPackage, fetchgit }:
2016-09-26 08:51:04 +01:00
buildGoPackage rec {
name = "gcsfuse-${version}";
2017-09-10 04:19:06 +01:00
version = "0.23.0";
rev = "v${version}";
2016-09-26 08:51:04 +01:00
goPackagePath = "github.com/googlecloudplatform/gcsfuse";
src = fetchgit {
inherit rev;
url = "https://github.com/googlecloudplatform/gcsfuse";
2017-09-10 04:19:06 +01:00
sha256 = "1qxbpsmz22l5w4b7wbgfdq4v85cfc9ka9i8h4c56nals1x5lcsnx";
2016-09-26 08:51:04 +01:00
};
meta = {
2016-09-29 05:47:48 +01:00
license = lib.licenses.asl20;
2017-04-08 04:01:20 +01:00
platforms = lib.platforms.linux;
2016-09-29 05:47:48 +01:00
maintainers = [];
homepage = https://cloud.google.com/storage/docs/gcs-fuse;
description =
"A user-space file system for interacting with Google Cloud Storage";
2016-09-26 08:51:04 +01:00
};
}