Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.09 19 lines 605 B view raw
1{ stdenv, fetchFromGitHub }: 2stdenv.mkDerivation rec { 3 pname = "git-quick-stats"; 4 version = "2.0.9"; 5 src = fetchFromGitHub { 6 repo = "git-quick-stats"; 7 owner = "arzzen"; 8 rev = version; 9 sha256 = "0y8rzm2jizsh65sxc3jlqp4nfv558rfhr77s9hz4qy4i24z44bgq"; 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}