914e0e594c
https://github.com/NixOS/nixpkgs/pull/17254#issuecomment-245295541 * update docs to describe `deps.nix` * include goDeps in nix-shell GOPATH * NixOS 16.09 rel notes about replacing goPackages
18 lines
488 B
Nix
18 lines
488 B
Nix
{ stdenv, lib, buildGoPackage, fetchgit, fetchhg, fetchbzr, fetchsvn }:
|
|
|
|
buildGoPackage rec {
|
|
name = "oauth2_proxy-${version}";
|
|
version = "20160120-${stdenv.lib.strings.substring 0 7 rev}";
|
|
rev = "10f47e325b782a60b8689653fa45360dee7fbf34";
|
|
|
|
goPackagePath = "github.com/bitly/oauth2_proxy";
|
|
|
|
src = fetchgit {
|
|
inherit rev;
|
|
url = "https://github.com/bitly/oauth2_proxy";
|
|
sha256 = "13f6kaq15f6ial9gqzrsx7i94jhd5j70js2k93qwxcw1vkh1b6si";
|
|
};
|
|
|
|
goDeps = ./deps.nix;
|
|
}
|