92cf9bef86
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/git-quick-stats/versions
19 lines
606 B
Nix
19 lines
606 B
Nix
{ stdenv, fetchFromGitHub }:
|
|
stdenv.mkDerivation rec {
|
|
pname = "git-quick-stats";
|
|
version = "2.0.10";
|
|
src = fetchFromGitHub {
|
|
repo = "git-quick-stats";
|
|
owner = "arzzen";
|
|
rev = version;
|
|
sha256 = "09wqrrwcilm8ffsj7lkq0vxdnk6yrq0xnl788hpln15q75brsbq6";
|
|
};
|
|
PREFIX = builtins.placeholder "out";
|
|
meta = with stdenv.lib; {
|
|
homepage = "https://github.com/arzzen/git-quick-stats";
|
|
description = "A simple and efficient way to access various statistics in git repository";
|
|
platforms = platforms.all;
|
|
maintainers = [ maintainers.kmein ];
|
|
license = licenses.mit;
|
|
};
|
|
}
|