Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 50bd8979084c
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 1aaba2ad859a
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Sep 7, 2019

  1. gcsfuse: 0.23.0 -> 0.28.1

    Jonathan Ringer committed Sep 7, 2019

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    jluttine Jaakko Luttinen
    Copy the full SHA
    44fe29b View commit details

Commits on Oct 6, 2019

  1. Merge pull request #68250 from jonringer/bump-gcsfuse

    gcsfuse: 0.23.0 -> 0.28.1
    c0bw3b authored Oct 6, 2019
    Copy the full SHA
    1aaba2a View commit details
Showing with 15 additions and 17 deletions.
  1. +15 −17 pkgs/tools/filesystems/gcsfuse/default.nix
32 changes: 15 additions & 17 deletions pkgs/tools/filesystems/gcsfuse/default.nix
Original file line number Diff line number Diff line change
@@ -1,25 +1,23 @@
# This file was generated by go2nix.
{ lib, buildGoPackage, fetchgit }:
{ lib, buildGoModule, fetchFromGitHub }:

buildGoPackage rec {
buildGoModule rec {
pname = "gcsfuse";
version = "0.23.0";
rev = "v${version}";
version = "0.28.1";

goPackagePath = "github.com/googlecloudplatform/gcsfuse";

src = fetchgit {
inherit rev;
url = "https://github.com/googlecloudplatform/gcsfuse";
sha256 = "1qxbpsmz22l5w4b7wbgfdq4v85cfc9ka9i8h4c56nals1x5lcsnx";
src = fetchFromGitHub {
owner = "googlecloudplatform";
repo = "gcsfuse";
rev = "v${version}";
sha256 = "0dh01qvsjlzji2mwznykc2nghg4f1raylvgnp6sbxv9x1kpnwx71";
};

meta = {
license = lib.licenses.asl20;
platforms = lib.platforms.unix;
modSha256 = "0i86xs3lq2mj22yv7jmhmb34k7lz348bakqz020xpyccllkkszy4";

meta = with lib;{
description = "A user-space file system for interacting with Google Cloud Storage";
homepage = "https://cloud.google.com/storage/docs/gcs-fuse";
license = licenses.asl20;
platforms = platforms.unix;
maintainers = [];
homepage = https://cloud.google.com/storage/docs/gcs-fuse;
description =
"A user-space file system for interacting with Google Cloud Storage";
};
}