imgproxy 3.17.0 -> 3.18.0 https://github.com/imgproxy/imgproxy/releases attrpath: imgproxy Checking auto update branch... No auto update branch exists Old version 3.17.0" not present in master derivation file with contents: { lib, buildGoModule, fetchFromGitHub, pkg-config, vips, gobject-introspection , stdenv, libunwind }: buildGoModule rec { pname = "imgproxy"; version = "3.18.0"; src = fetchFromGitHub { owner = pname; repo = pname; sha256 = "sha256-c85G76u0qLyRbiXEWpYKZerrkZmHkq+VmCdHJk6pH9M="; rev = "v${version}"; }; vendorHash = "sha256-5o1i88v+1UGYXP2SzyM6seyidrj1Z3Q64w/gi07xf4w="; nativeBuildInputs = [ pkg-config ]; buildInputs = [ gobject-introspection vips ] ++ lib.optionals stdenv.isDarwin [ libunwind ]; preBuild = '' export CGO_LDFLAGS_ALLOW='-(s|w)' ''; meta = with lib; { description = "Fast and secure on-the-fly image processing server written in Go"; homepage = "https://imgproxy.net"; changelog = "https://github.com/imgproxy/imgproxy/blob/master/CHANGELOG.md"; license = licenses.mit; maintainers = with maintainers; [ paluh ]; }; }