fluidd 1.26.3 -> 1.27.1 https://repology.org/project/fluidd/versions attrpath: fluidd Checking auto update branch... No auto update branch exists Old version 1.26.3" not present in master derivation file with contents: { lib, stdenvNoCC, fetchurl, unzip }: stdenvNoCC.mkDerivation rec { pname = "fluidd"; version = "1.27.1"; src = fetchurl { name = "fluidd-v${version}.zip"; url = "https://github.com/cadriel/fluidd/releases/download/v${version}/fluidd.zip"; sha256 = "sha256-yBxbN6Pd92HjhJ0wMaTDXETcdV4a795wAhv06JcYjJM="; }; 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 ]; }; }