entr 5.2 -> 5.4 https://repology.org/project/entr/versions attrpath: entr Checking auto update branch... No auto update branch exists Old version 5.2" not present in master derivation file with contents: { lib, stdenv, fetchurl, coreutils }: stdenv.mkDerivation rec { pname = "entr"; version = "5.4"; src = fetchurl { url = "https://eradman.com/entrproject/code/${pname}-${version}.tar.gz"; hash = "sha256-SR3e0sw/Hc2NJvSWpMezqZa5HHqyCIPKN1A3o5giH54="; }; postPatch = '' substituteInPlace entr.c --replace /bin/cat ${coreutils}/bin/cat substituteInPlace entr.1 --replace /bin/cat cat ''; dontAddPrefix = true; doCheck = true; checkTarget = "test"; installFlags = [ "PREFIX=$(out)" ]; meta = with lib; { homepage = "https://eradman.com/entrproject/"; description = "Run arbitrary commands when files change"; changelog = "https://github.com/eradman/entr/raw/${version}/NEWS"; license = licenses.isc; platforms = platforms.all; maintainers = with maintainers; [ pSub synthetica ]; }; }