25 lines
676 B
Nix
25 lines
676 B
Nix
{ lib, fetchFromGitHub, buildGoModule }:
|
|
|
|
buildGoModule rec {
|
|
pname = "gitty";
|
|
version = "0.7.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "muesli";
|
|
repo = "gitty";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-g0D6nJiHY7cz72DSmdQZsj9Vgv/VOp0exTcLsaypGiU=";
|
|
};
|
|
|
|
vendorHash = "sha256-qrLECQkjXH0aTHmysq64jnXj9jgbunpVtBAIXJOEYIY=";
|
|
|
|
ldflags = [ "-s" "-w" "-X=main.Version=${version}" ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/muesli/gitty/";
|
|
description = "Contextual information about your git projects, right on the command-line";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ izorkin ];
|
|
mainProgram = "gitty";
|
|
};
|
|
}
|