nixpkgs/pkgs/tools/misc/gawp/default.nix

22 lines
522 B
Nix
Raw Normal View History

# This file was generated by go2nix.
2016-04-27 06:45:04 +00:00
{ stdenv, lib, goPackages, fetchgit }:
with builtins;
with goPackages;
buildGoPackage rec {
name = "gawp-${version}";
version = "20160121-${stdenv.lib.strings.substring 0 7 rev}";
rev = "5db2d8faa220e8d6eaf8677354bd197bf621ff7f";
goPackagePath = "github.com/martingallagher/gawp";
src = fetchgit {
inherit rev;
url = "https://github.com/martingallagher/gawp";
sha256 = "0r4bp4w3s9rkmg3cz9jb7d6ngh7vfj31p9kbim6mhilxvmgjk4ly";
};
2016-04-27 06:45:04 +00:00
goDeps = ./deps.json;
}