txr 292 -> 293 https://repology.org/project/txr/versions attrpath: txr Checking auto update branch... No auto update branch exists Old version 292" not present in master derivation file with contents: { lib , stdenv , fetchurl , coreutils , libffi }: stdenv.mkDerivation (finalAttrs: { pname = "txr"; version = "293"; src = fetchurl { url = "https://www.kylheku.com/cgit/txr/snapshot/txr-${finalAttrs.version}.tar.bz2"; hash = "sha256-b8Ia5zMvmPl681rTyhgI0AQ8TIU4TE5768/Oln42+lw="; }; buildInputs = [ libffi ]; enableParallelBuilding = true; doCheck = true; checkTarget = "tests"; postPatch = '' substituteInPlace tests/017/realpath.tl --replace /usr/bin /bin substituteInPlace tests/017/realpath.expected --replace /usr/bin /bin substituteInPlace tests/018/process.tl --replace /usr/bin/env ${lib.getBin coreutils}/bin/env ''; preCheck = let disabledTests = lib.concatStringsSep " " [ # - tries to set sticky bits "tests/018/chmod.tl" # - warning: unbound function crypt "tests/018/crypt.tl" ]; in '' rm ${disabledTests} ''; postInstall = '' mkdir -p $out/share/vim-plugins/txr/{syntax,ftdetect} cp {tl,txr}.vim $out/share/vim-plugins/txr/syntax/ cat > $out/share/vim-plugins/txr/ftdetect/txr.vim <