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: 5db81b646a0d
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 406e29ff7846
Choose a head ref
  • 1 commit
  • 3 files changed
  • 2 contributors

Commits on Sep 7, 2019

  1. nix-store-gcs-proxy: init at 0.1.0 (#68139)

    * nix-store-gcs-proxy: init at 0.1.0
    
    Co-Authored-By: Florian Klink <flokli@flokli.de>
    zimbatm and flokli committed Sep 7, 2019
    Copy the full SHA
    406e29f View commit details
Showing with 839 additions and 0 deletions.
  1. +24 −0 pkgs/tools/nix/nix-store-gcs-proxy/default.nix
  2. +813 −0 pkgs/tools/nix/nix-store-gcs-proxy/deps.nix
  3. +2 −0 pkgs/top-level/all-packages.nix
24 changes: 24 additions & 0 deletions pkgs/tools/nix/nix-store-gcs-proxy/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{ lib, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
pname = "nix-store-gcs-proxy";
version = "0.1.0";

src = fetchFromGitHub {
owner = "tweag";
repo = "nix-store-gcs-proxy";
rev = "v${version}";
sha256 = "0804p65px4wd7gzxggpdxsazkd1hbz1p15zzaxf9ygc6sh26ncln";
};

goPackagePath = "github.com/tweag/nix-store-gcs-proxy";

goDeps = ./deps.nix;

meta = {
description = "A HTTP nix store that proxies requests to Google Storage";
homepage = "https://github.com/tweag/nix-store-gcs-proxy";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ zimbatm ];
};
}

Loading