fastp 0.23.2 -> 0.23.3 https://github.com/OpenGene/fastp/releases attrpath: fastp Checking auto update branch... No auto update branch exists Old version 0.23.2" not present in master derivation file with contents: { lib , stdenv , fetchFromGitHub , zlib , libdeflate , isa-l }: stdenv.mkDerivation rec { pname = "fastp"; version = "0.23.3"; src = fetchFromGitHub { owner = "OpenGene"; repo = "fastp"; rev = "v${version}"; sha256 = "sha256-9YHm5LIKJJpMavlWMZXD5ZgTgT5w9eXuXwQVa/prux8="; }; buildInputs = [ zlib libdeflate isa-l ]; installPhase = '' install -D fastp $out/bin/fastp ''; meta = with lib; { description = "Ultra-fast all-in-one FASTQ preprocessor"; license = licenses.mit; homepage = "https://github.com/OpenGene/fastp"; maintainers = with maintainers; [ jbedo ]; platforms = platforms.x86_64; }; }