git-quick-stats 2.5.1 -> 2.5.2 https://github.com/arzzen/git-quick-stats/releases attrpath: git-quick-stats Checking auto update branch... No auto update branch exists Old version 2.5.1" not present in master derivation file with contents: { lib, stdenv , fetchFromGitHub , makeWrapper , coreutils , gawk , git , gnugrep , ncurses , util-linux }: stdenv.mkDerivation rec { pname = "git-quick-stats"; version = "2.5.2"; src = fetchFromGitHub { repo = "git-quick-stats"; owner = "arzzen"; rev = version; sha256 = "sha256-ff8n8SkeppZzJO58OrPQJ0MInZCIz8nTb7lmiCC0ATg="; }; nativeBuildInputs = [ makeWrapper ]; installFlags = [ "PREFIX=${builtins.placeholder "out"}" ]; postInstall = let path = lib.makeBinPath [ coreutils gawk git gnugrep ncurses util-linux ]; in '' wrapProgram $out/bin/git-quick-stats --suffix PATH : ${path} ''; meta = with 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; mainProgram = "git-quick-stats"; }; }