mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 03:30:45 +00:00
gitcs: init at 1.2.0
Signed-off-by: phanirithvij <phanirithvij2000@gmail.com>
This commit is contained in:
parent
77743bb232
commit
bbf1124513
30
pkgs/by-name/gi/gitcs/package.nix
Normal file
30
pkgs/by-name/gi/gitcs/package.nix
Normal file
|
@ -0,0 +1,30 @@
|
|||
{
|
||||
lib,
|
||||
buildGoModule,
|
||||
fetchFromGitHub,
|
||||
}:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "gitcs";
|
||||
version = "1.2.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "knbr13";
|
||||
repo = "gitcs";
|
||||
rev = "v${version}";
|
||||
hash = "sha256-IyhVVRTKftZIzqMH5pBUMLPIk8bk0rVAxPKD6bABP68=";
|
||||
};
|
||||
|
||||
vendorHash = "sha256-8yzPdVljnODOeI5yWh19BHsF4Pa9BWc49IwenMCVGZo=";
|
||||
|
||||
ldflags = [ "-s" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Scan local git repositories and generate a visual contributions graph";
|
||||
changelog = "https://github.com/knbr13/gitcs/releases/tag/v${version}";
|
||||
homepage = "https://github.com/knbr13/gitcs";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ phanirithvij ];
|
||||
mainProgram = "gitcs";
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue