nixpkgs/pkgs/tools/networking/s3gof3r/default.nix

18 lines
485 B
Nix
Raw Normal View History

2016-06-06 00:28:52 +00:00
{ stdenv, lib, buildGoPackage, fetchgit, fetchhg, fetchbzr, fetchsvn }:
2016-06-03 15:20:43 +00:00
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;
2016-06-03 15:20:43 +00:00
}