cloc 1.96 -> 1.98 https://github.com/AlDanial/cloc/releases attrpath: cloc Checking auto update branch... No auto update branch exists Old version 1.96" not present in master derivation file with contents: { lib, stdenv, fetchFromGitHub, makeWrapper, perlPackages }: let version = "1.98"; in stdenv.mkDerivation { pname = "cloc"; inherit version; src = fetchFromGitHub { owner = "AlDanial"; repo = "cloc"; rev = "v${version}"; sha256 = "sha256-OTzIzLgE9sdbHZUSARSbVrxD95dW8gPiM8tvMvqm1Bg="; }; 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"; doInstallCheck = true; installCheckPhase = '' runHook preInstallCheck echo -n 'checking --version...' $out/bin/cloc --version | grep '${version}' > /dev/null echo ' ok' cat > test.nix < /dev/null echo ' ok' runHook postInstallCheck ''; 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 ]; }; }