fluidd 1.23.4 -> 1.23.5 https://github.com/cadriel/fluidd/releases attrpath: fluidd Checking auto update branch... No auto update branch exists Old version 1.23.4" not present in master derivation file with contents: { lib, stdenvNoCC, fetchurl, unzip }: stdenvNoCC.mkDerivation rec { pname = "fluidd"; version = "1.23.5"; src = fetchurl { name = "fluidd-v${version}.zip"; url = "https://github.com/cadriel/fluidd/releases/download/v${version}/fluidd.zip"; sha256 = "sha256-od/RoxFjnOuyz7+D+avQJyJzpqpovzs+g4ErfyDJQpY="; }; nativeBuildInputs = [ unzip ]; dontConfigure = true; dontBuild = true; unpackPhase = '' mkdir fluidd unzip $src -d fluidd ''; installPhase = '' mkdir -p $out/share/fluidd cp -r fluidd $out/share/fluidd/htdocs ''; meta = with lib; { description = "Klipper web interface"; homepage = "https://docs.fluidd.xyz"; license = licenses.gpl3Only; maintainers = with maintainers; [ zhaofengli ]; }; }