summary refs log tree commit diff
path: root/pkgs/tools/networking/s3gof3r/default.nix
blob: 390b35b0297f1569d4ffb0ae624296513bfc859d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ lib, stdenv, buildGoPackage, fetchgit }:

buildGoPackage rec {
  pname = "s3gof3r";
  version = "20151109-${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;
}