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

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

23 lines
517 B
Nix
Raw Normal View History

{ lib, buildGoModule, fetchFromGitHub }:
2016-06-03 16:30:38 +00:00
buildGoModule rec {
pname = "wego";
2023-06-10 23:58:00 +00:00
version = "2.2";
2020-02-01 13:07:58 +00:00
src = fetchFromGitHub {
owner = "schachmat";
repo = pname;
rev = version;
2023-06-10 23:58:00 +00:00
sha256 = "sha256-bkbH3RewlYYNamAhAZGWQmzNdGB06K3m/D8ScsQP9ic=";
2016-06-03 16:30:38 +00:00
};
2023-06-10 23:58:00 +00:00
vendorHash = "sha256-aXrXw/7ZtSZXIKDMZuWPV2zAf0e0lU0QCBhua7tHGEY=";
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;
2024-02-11 02:19:15 +00:00
mainProgram = "wego";
2018-10-07 16:55:00 +00:00
};
2016-06-03 16:30:38 +00:00
}