about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/misc/wego/default.nix
blob: 74c424a277b19071adc6796e54206f8329003b3b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ lib, stdenv, buildGoPackage, fetchgit }:

buildGoPackage rec {
  pname = "wego";
  version = "unstable-2019-02-11";
  rev = "994e4f141759a1070d7b0c8fbe5fad2cc7ee7d45";

  goPackagePath = "github.com/schachmat/wego";

  src = fetchgit {
    inherit rev;
    url = "https://github.com/schachmat/wego";
    sha256 = "1affzwi5rbp4zkirhmby8bvlhsafw7a4rs27caqwyj8g3jhczmhy";
  };

  goDeps = ./deps.nix;

  meta = {
    license = lib.licenses.isc;
    homepage = "https://github.com/schachmat/wego";
    description = "Weather app for the terminal";
  };
}