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
485 B
Nix
18 lines
485 B
Nix
{ stdenv, lib, buildGoPackage, fetchgit, fetchhg, fetchbzr, fetchsvn }:
|
|
|
|
buildGoPackage rec {
|
|
name = "s3gof3r-${version}";
|
|
version = "20151109-${stdenv.lib.strings.substring 0 7 rev}";
|
|
rev = "31603a0dc94aefb822bfe2ceea75a6be6013b445";
|
|
|
|
goPackagePath = "github.com/rlmcpherson/s3gof3r";
|
|
|
|
src = fetchgit {
|
|
inherit rev;
|
|
url = "https://github.com/rlmcpherson/s3gof3r";
|
|
sha256 = "10banc8hnhxpsdmlkf9nc5fjkh1349bgpd9k7lggw3yih1rvmh7k";
|
|
};
|
|
|
|
goDeps = ./deps.nix;
|
|
}
|