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
491 B
Nix
Raw Normal View History

{ lib, buildGoModule, fetchFromGitHub }:
2016-06-03 19:30:38 +03:00
buildGoModule rec {
pname = "wego";
2023-06-11 02:58:00 +03:00
version = "2.2";
2020-02-01 16:07:58 +03:00
src = fetchFromGitHub {
owner = "schachmat";
repo = pname;
rev = version;
2023-06-11 02:58:00 +03:00
sha256 = "sha256-bkbH3RewlYYNamAhAZGWQmzNdGB06K3m/D8ScsQP9ic=";
2016-06-03 19:30:38 +03:00
};
2023-06-11 02:58:00 +03:00
vendorHash = "sha256-aXrXw/7ZtSZXIKDMZuWPV2zAf0e0lU0QCBhua7tHGEY=";
2018-10-07 19:55:00 +03:00
meta = with lib; {
2019-10-08 21:54:38 +03:00
homepage = "https://github.com/schachmat/wego";
description = "Weather app for the terminal";
license = licenses.isc;
2018-10-07 19:55:00 +03:00
};
2016-06-03 19:30:38 +03:00
}