nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at 20.03 19 lines 606 B view raw
1{ stdenv, fetchFromGitHub }: 2stdenv.mkDerivation rec { 3 pname = "git-quick-stats"; 4 version = "2.0.13"; 5 src = fetchFromGitHub { 6 repo = "git-quick-stats"; 7 owner = "arzzen"; 8 rev = version; 9 sha256 = "0j0a4y50wlwban40lj8y89ch4xnmm1ag8klkl8smbrn972d5d0cy"; 10 }; 11 PREFIX = builtins.placeholder "out"; 12 meta = with stdenv.lib; { 13 homepage = "https://github.com/arzzen/git-quick-stats"; 14 description = "A simple and efficient way to access various statistics in git repository"; 15 platforms = platforms.all; 16 maintainers = [ maintainers.kmein ]; 17 license = licenses.mit; 18 }; 19}