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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
493 B
Nix
Raw Normal View History

{ lib, buildGoModule, fetchFromGitHub }:
2016-06-03 16:30:38 +00:00
buildGoModule rec {
pname = "wego";
version = "2.1";
2020-02-01 13:07:58 +00:00
src = fetchFromGitHub {
owner = "schachmat";
repo = pname;
rev = version;
sha256 = "sha256-lMcrFwYtlnivNjSbzyiAEAVX6ME87yB/Em8Cxb1LUS4=";
2016-06-03 16:30:38 +00:00
};
vendorSha256 = "sha256-kv8c0TZdxCIfmkgCLDiNyoGqQZEKUlrNLEbjlG9rSPs=";
2018-10-07 16:55:00 +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";
license = licenses.isc;
2018-10-07 16:55:00 +00:00
};
2016-06-03 16:30:38 +00:00
}