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

20 lines
605 B
Nix
Raw Normal View History

2019-06-01 23:40:22 +01:00
{ stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
pname = "git-quick-stats";
version = "2.1.2";
2019-06-01 23:40:22 +01:00
src = fetchFromGitHub {
repo = "git-quick-stats";
owner = "arzzen";
2019-09-09 00:38:31 +01:00
rev = version;
sha256 = "1q0iy732smad1v25da9vmlk8r5iscjrk678pq6mda9sbmiq693r3";
2019-06-01 23:40:22 +01:00
};
PREFIX = builtins.placeholder "out";
2019-06-01 23:40:22 +01: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;
};
}