nixpkgs/pkgs/applications/misc/wego/default.nix

22 lines
494 B
Nix
Raw Normal View History

{ stdenv, buildGoPackage, fetchgit }:
2016-06-03 16:30:38 +00:00
buildGoPackage rec {
name = "wego-${version}";
version = "20170403-${stdenv.lib.strings.substring 0 7 rev}";
rev = "415efdfab5d5ee68300bf261a0c6f630c6c2584c";
2016-06-03 16:30:38 +00:00
goPackagePath = "github.com/schachmat/wego";
src = fetchgit {
inherit rev;
url = "https://github.com/schachmat/wego";
sha256 = "0w8sypwg0s2mvhk9cdibqr8bz5ipiiacs60a39sdswrpc4z486hg";
2016-06-03 16:30:38 +00:00
};
goDeps = ./deps.nix;
2018-10-07 16:55:00 +00:00
meta = {
license = stdenv.lib.licenses.isc;
};
2016-06-03 16:30:38 +00:00
}