txr 285 -> 288 https://repology.org/project/txr/versions attrpath: txr Checking auto update branch... No auto update branch exists Old version 285" not present in master derivation file with contents: { lib , stdenv , fetchurl , coreutils , libffi }: stdenv.mkDerivation (finalAttrs: { pname = "txr"; version = "287"; src = fetchurl { url = "http://www.kylheku.com/cgit/txr/snapshot/txr-${finalAttrs.version}.tar.bz2"; hash = "sha256-L0+H1NDdEkKzO4Xj6uPu0+CInbF+J8e1ta2rC2uDD1M="; }; 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 <