2022-12-24T12:24:24 cloc 1.94 -> 1.96 https://github.com/AlDanial/cloc/releases 2022-12-24T12:24:27 attrpath: cloc 2022-12-24T12:24:27 Checking auto update branch... 2022-12-24T12:24:27 No auto update branch exists 2022-12-24T12:24:27 Old version 1.94" not present in master derivation file with contents: { lib, stdenv, fetchFromGitHub, makeWrapper, perlPackages }: stdenv.mkDerivation rec { pname = "cloc"; version = "1.96"; src = fetchFromGitHub { owner = "AlDanial"; repo = "cloc"; rev = "v${version}"; sha256 = "sha256-20vL+SX8Tbp6QxErDn76c6sLWnB1IJwHlQX4YAvj+Eg="; }; setSourceRoot = '' sourceRoot=$(echo */Unix) ''; nativeBuildInputs = [ makeWrapper ]; buildInputs = with perlPackages; [ perl AlgorithmDiff ParallelForkManager RegexpCommon ]; makeFlags = [ "prefix=" "DESTDIR=$(out)" "INSTALL=install" ]; postFixup = "wrapProgram $out/bin/cloc --prefix PERL5LIB : $PERL5LIB"; meta = { description = "A program that counts lines of source code"; homepage = "https://github.com/AlDanial/cloc"; license = lib.licenses.gpl2; platforms = lib.platforms.all; maintainers = with lib.maintainers; [ rycee ]; }; }