nifi 1.20.0 -> 1.21.0 https://repology.org/project/nifi/versions attrpath: nifi Checking auto update branch... No auto update branch exists Old version 1.20.0" not present in master derivation file with contents: { lib, stdenv, fetchzip, makeWrapper, jdk11, nixosTests }: stdenv.mkDerivation rec { pname = "nifi"; version = "1.21.0"; src = fetchzip { url = "mirror://apache/nifi/${version}/nifi-${version}-bin.zip"; sha256 = "sha256-AnDvZ9SV+VFdsP6KoqZIPNinAe2erT/IBY4c6i+2iTQ="; }; nativeBuildInputs = [ makeWrapper ]; buildInputs = [ jdk11 ]; installPhase = '' mv ../$sourceRoot $out rm -f $out/bin/*bat rm -rf $out/extensions mkdir -p $out/share/nifi mv $out/conf $out/share/nifi mv $out/docs $out/share/nifi mv $out/{LICENSE,NOTICE,README} $out/share/nifi substituteInPlace $out/bin/nifi.sh \ --replace "/bin/sh" "${stdenv.shell}" substituteInPlace $out/bin/nifi-env.sh \ --replace "#export JAVA_HOME=/usr/java/jdk1.8.0/" "export JAVA_HOME=${jdk11}" ''; passthru = { tests.nifi = nixosTests.nifi; }; meta = with lib; { description = "Easy to use, powerful, and reliable system to process and distribute data"; longDescription = '' Apache NiFi supports powerful and scalable directed graphs of data routing, transformation, and system mediation logic. ''; license = licenses.asl20; homepage = "https://nifi.apache.org"; platforms = [ "x86_64-linux" ]; maintainers = with maintainers; [ izorkin ]; }; }