2021-04-10 18:55:25 +00:00
|
|
|
{ lib, buildGoModule, fetchFromGitHub, pkg-config, vips, gobject-introspection
|
|
|
|
, stdenv, libunwind }:
|
2020-01-10 19:56:16 +00:00
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "imgproxy";
|
2024-05-07 02:01:56 +00:00
|
|
|
version = "3.24.1";
|
2020-01-10 19:56:16 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = pname;
|
|
|
|
repo = pname;
|
2024-05-07 02:01:56 +00:00
|
|
|
hash = "sha256-1AacDY4qNe+1SESsEEazxoBnJZRphnext1mu3BOKwKY=";
|
2020-01-10 19:56:16 +00:00
|
|
|
rev = "v${version}";
|
|
|
|
};
|
|
|
|
|
2024-04-30 02:17:15 +00:00
|
|
|
vendorHash = "sha256-GIMba/XlINwJilRo5Oi2j7HJJTQQpMOa2kPH17T/vLU=";
|
2020-01-10 19:56:16 +00:00
|
|
|
|
2023-06-22 11:49:31 +00:00
|
|
|
nativeBuildInputs = [ pkg-config gobject-introspection ];
|
2020-03-17 17:43:54 +00:00
|
|
|
|
2023-06-22 11:49:31 +00:00
|
|
|
buildInputs = [ vips ]
|
2021-04-10 18:55:25 +00:00
|
|
|
++ lib.optionals stdenv.isDarwin [ libunwind ];
|
2020-01-10 19:56:16 +00:00
|
|
|
|
|
|
|
preBuild = ''
|
|
|
|
export CGO_LDFLAGS_ALLOW='-(s|w)'
|
|
|
|
'';
|
|
|
|
|
2020-03-27 07:33:21 +00:00
|
|
|
meta = with lib; {
|
2020-01-10 19:56:16 +00:00
|
|
|
description = "Fast and secure on-the-fly image processing server written in Go";
|
2024-03-19 02:14:51 +00:00
|
|
|
mainProgram = "imgproxy";
|
2020-01-10 19:56:16 +00:00
|
|
|
homepage = "https://imgproxy.net";
|
2023-06-30 04:20:46 +00:00
|
|
|
changelog = "https://github.com/imgproxy/imgproxy/blob/${src.rev}/CHANGELOG.md";
|
2020-01-10 19:56:16 +00:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ paluh ];
|
|
|
|
};
|
2020-05-21 21:17:19 +00:00
|
|
|
}
|