{ lib, buildGoModule, fetchFromGitHub, pkg-config, vips, gobject-introspection , stdenv, libunwind }: buildGoModule rec { pname = "imgproxy"; version = "3.9.0"; src = fetchFromGitHub { owner = pname; repo = pname; sha256 = "sha256-+eI/I+olBPoHez+rjj7Cgqc71M0ZcD9oa35BLQwHPsU="; rev = "v${version}"; }; vendorSha256 = "sha256-A6oToGLAFeG0Rd3koDOx+bBsiCye+OcihBwENZNFBSY="; 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"; license = licenses.mit; maintainers = with maintainers; [ paluh ]; }; }