biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / applications / version-management / gitty / default.nix
blobba677b2ba8e54bafdf41a6b1269c15f48296e42e
1 { lib, fetchFromGitHub, buildGoModule }:
3 buildGoModule rec {
4   pname = "gitty";
5   version = "0.7.0";
7   src = fetchFromGitHub {
8     owner = "muesli";
9     repo = "gitty";
10     rev = "v${version}";
11     sha256 = "sha256-g0D6nJiHY7cz72DSmdQZsj9Vgv/VOp0exTcLsaypGiU=";
12   };
14   vendorHash = "sha256-qrLECQkjXH0aTHmysq64jnXj9jgbunpVtBAIXJOEYIY=";
16   ldflags = [ "-s" "-w" "-X=main.Version=${version}" ];
18   meta = with lib; {
19     homepage = "https://github.com/muesli/gitty/";
20     description = "Contextual information about your git projects, right on the command-line";
21     license = licenses.mit;
22     maintainers = with maintainers; [ izorkin ];
23     mainProgram = "gitty";
24   };