nixpkgs/pkgs/development/tools/git-quick-stats/default.nix

20 lines
606 B
Nix
Raw Normal View History

2019-06-01 22:40:22 +00:00
{ stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
pname = "git-quick-stats";
2020-05-02 10:34:27 +00:00
version = "2.0.16";
2019-06-01 22:40:22 +00:00
src = fetchFromGitHub {
repo = "git-quick-stats";
owner = "arzzen";
2019-09-08 23:38:31 +00:00
rev = version;
2020-05-02 10:34:27 +00:00
sha256 = "03v06r6gbn8bhya1ig9wdc92hh2ip7072syxkam3sjv150ld80cn";
2019-06-01 22:40:22 +00:00
};
PREFIX = builtins.placeholder "out";
2019-06-01 22:40:22 +00:00
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;
};
}