last 1422 -> 1445 https://repology.org/metapackage/last/versions attrpath: last Checking auto update branch... No auto update branch exists Old version 1422" not present in master derivation file with contents: { lib , stdenv , fetchFromGitLab , unzip , zlib , python3 , parallel }: stdenv.mkDerivation rec { pname = "last"; version = "1445"; src = fetchFromGitLab { owner = "mcfrith"; repo = "last"; rev = "refs/tags/${version}"; hash = "sha256-E3D9KmCIVcwXblwJ0wePk0wKoXwKA2UsSGqfMmRsw2A="; }; nativeBuildInputs = [ unzip ]; buildInputs = [ zlib python3 ]; makeFlags = [ "prefix=${placeholder "out"}" ]; postFixup = '' for f in $out/bin/parallel-* ; do sed -i 's|parallel |${parallel}/bin/parallel |' $f done ''; meta = with lib; { description = "Genomic sequence aligner"; homepage = "https://gitlab.com/mcfrith/last"; license = licenses.gpl3Plus; maintainers = with maintainers; [ jbedo ]; platforms = platforms.x86_64; }; }