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

24 lines
545 B
Nix
Raw Normal View History

{ lib, buildGoPackage, fetchgit }:
2016-06-03 16:30:38 +00:00
buildGoPackage rec {
pname = "wego";
2020-02-01 13:07:58 +00:00
version = "unstable-2019-02-11";
rev = "994e4f141759a1070d7b0c8fbe5fad2cc7ee7d45";
2016-06-03 16:30:38 +00:00
goPackagePath = "github.com/schachmat/wego";
src = fetchgit {
inherit rev;
url = "https://github.com/schachmat/wego";
2020-02-01 13:07:58 +00:00
sha256 = "1affzwi5rbp4zkirhmby8bvlhsafw7a4rs27caqwyj8g3jhczmhy";
2016-06-03 16:30:38 +00:00
};
goDeps = ./deps.nix;
2018-10-07 16:55:00 +00:00
meta = {
2021-01-15 05:42:41 +00:00
license = lib.licenses.isc;
2019-10-08 18:54:38 +00:00
homepage = "https://github.com/schachmat/wego";
description = "Weather app for the terminal";
2018-10-07 16:55:00 +00:00
};
2016-06-03 16:30:38 +00:00
}