mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 07:23:20 +00:00
gitty: init at 0.3.0
This commit is contained in:
parent
4f0bc6d71d
commit
5df4645b39
@ -0,0 +1,25 @@
|
||||
{ lib, fetchFromGitHub, buildGoModule }:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "gitty";
|
||||
version = "0.3.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "muesli";
|
||||
repo = "gitty";
|
||||
rev = "v${version}";
|
||||
sha256 = "1byjcvzimwn6nmhz0agicq7zq0xhkj4idi9apm1mgd3m2l509ivj";
|
||||
};
|
||||
|
||||
vendorSha256 = "1mbl585ja82kss5p8vli3hbykqxa00j8z63ypq6vi464qkh5x3py";
|
||||
|
||||
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 ];
|
||||
};
|
||||
}
|
@ -5434,6 +5434,8 @@ with pkgs;
|
||||
|
||||
gitstatus = callPackage ../applications/version-management/git-and-tools/gitstatus { };
|
||||
|
||||
gitty = callPackage ../applications/version-management/git-and-tools/gitty { };
|
||||
|
||||
gitui = callPackage ../applications/version-management/git-and-tools/gitui {
|
||||
inherit (darwin.apple_sdk.frameworks) Security AppKit;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user