python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / nix / nix-store-gcs-proxy / default.nix
blob9f2fe3fe715600096b97a4bc9ee45948f01132f7
1 { lib, buildGoModule, fetchFromGitHub }:
2 buildGoModule rec {
3   pname = "nix-store-gcs-proxy";
4   version = "0.1.0";
6   src = fetchFromGitHub {
7     owner = "tweag";
8     repo = "nix-store-gcs-proxy";
9     rev = "v${version}";
10     sha256 = "0804p65px4wd7gzxggpdxsazkd1hbz1p15zzaxf9ygc6sh26ncln";
11   };
13   vendorSha256 = "sha256-Bm3yFzm2LXOPYWQDk/UBusV0lPfc/BCKIb3pPlWgDFo=";
15   ldflags = [ "-s" "-w" ];
17   meta = {
18     description = "A HTTP nix store that proxies requests to Google Storage";
19     homepage = "https://github.com/tweag/nix-store-gcs-proxy";
20     license = lib.licenses.asl20;
21     maintainers = with lib.maintainers; [ zimbatm ];
22   };