Merge pull request #136940 from Izorkin/init-gitty

gitty: init at 0.3.0

authored by

Fabian Affolter and committed by
GitHub
fffe8611 4f0bc6d7

+27
+25
pkgs/applications/version-management/git-and-tools/gitty/default.nix
··· 1 + { lib, fetchFromGitHub, buildGoModule }: 2 + 3 + buildGoModule rec { 4 + pname = "gitty"; 5 + version = "0.3.0"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "muesli"; 9 + repo = "gitty"; 10 + rev = "v${version}"; 11 + sha256 = "1byjcvzimwn6nmhz0agicq7zq0xhkj4idi9apm1mgd3m2l509ivj"; 12 + }; 13 + 14 + vendorSha256 = "1mbl585ja82kss5p8vli3hbykqxa00j8z63ypq6vi464qkh5x3py"; 15 + 16 + ldflags = [ "-s" "-w" "-X=main.Version=${version}" ]; 17 + 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 + platforms = platforms.unix; 23 + maintainers = with maintainers; [ izorkin ]; 24 + }; 25 + }
+2
pkgs/top-level/all-packages.nix
··· 5434 5434 5435 5435 gitstatus = callPackage ../applications/version-management/git-and-tools/gitstatus { }; 5436 5436 5437 + gitty = callPackage ../applications/version-management/git-and-tools/gitty { }; 5438 + 5437 5439 gitui = callPackage ../applications/version-management/git-and-tools/gitui { 5438 5440 inherit (darwin.apple_sdk.frameworks) Security AppKit; 5439 5441 };