2022-02-18 16:06:40 +00:00
|
|
|
{ lib, buildGoModule, fetchFromGitHub }:
|
2016-06-03 16:30:38 +00:00
|
|
|
|
2022-02-18 16:06:40 +00:00
|
|
|
buildGoModule rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "wego";
|
2022-02-18 16:06:40 +00:00
|
|
|
version = "2.1";
|
2020-02-01 13:07:58 +00:00
|
|
|
|
2022-02-18 16:06:40 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "schachmat";
|
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
|
|
|
sha256 = "sha256-lMcrFwYtlnivNjSbzyiAEAVX6ME87yB/Em8Cxb1LUS4=";
|
2016-06-03 16:30:38 +00:00
|
|
|
};
|
|
|
|
|
2022-02-18 16:06:40 +00:00
|
|
|
vendorSha256 = "sha256-kv8c0TZdxCIfmkgCLDiNyoGqQZEKUlrNLEbjlG9rSPs=";
|
2018-10-07 16:55:00 +00:00
|
|
|
|
2022-02-18 16:06:40 +00:00
|
|
|
meta = with lib; {
|
2019-10-08 18:54:38 +00:00
|
|
|
homepage = "https://github.com/schachmat/wego";
|
|
|
|
description = "Weather app for the terminal";
|
2022-02-18 16:06:40 +00:00
|
|
|
license = licenses.isc;
|
2018-10-07 16:55:00 +00:00
|
|
|
};
|
2016-06-03 16:30:38 +00:00
|
|
|
}
|