nixpkgs/pkgs/applications/version-management/gitty/default.nix

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

26 lines
683 B
Nix
Raw Normal View History

2021-09-06 22:00:48 +00:00
{ lib, fetchFromGitHub, buildGoModule }:
buildGoModule rec {
pname = "gitty";
2022-02-11 17:54:36 +00:00
version = "0.7.0";
2021-09-06 22:00:48 +00:00
src = fetchFromGitHub {
owner = "muesli";
repo = "gitty";
rev = "v${version}";
2022-02-11 17:54:36 +00:00
sha256 = "sha256-g0D6nJiHY7cz72DSmdQZsj9Vgv/VOp0exTcLsaypGiU=";
2021-09-06 22:00:48 +00:00
};
2022-02-11 17:54:36 +00:00
vendorSha256 = "sha256-qrLECQkjXH0aTHmysq64jnXj9jgbunpVtBAIXJOEYIY=";
2021-09-06 22:00:48 +00:00
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;
platforms = platforms.unix;
maintainers = with maintainers; [ izorkin ];
};
}