33 lines
780 B
Nix
33 lines
780 B
Nix
{ lib, buildGoModule, fetchFromGitHub, pkg-config, vips, gobject-introspection }:
|
|
|
|
buildGoModule rec {
|
|
pname = "imgproxy";
|
|
version = "2.16.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = pname;
|
|
repo = pname;
|
|
sha256 = "sha256-HUWDwUt/yHgwzqtQKsQ3DrBAfL8PBqGhFLMwS7ix5qE=";
|
|
rev = "v${version}";
|
|
};
|
|
|
|
vendorSha256 = "sha256-A03Qdwxv/uUKI4Lfmatqwu1RDH9vKU63Y+x25AdfZXs=";
|
|
|
|
doCheck = false;
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
buildInputs = [ gobject-introspection vips ];
|
|
|
|
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 ];
|
|
};
|
|
}
|