nixpkgs/pkgs/servers/imgproxy/default.nix

33 lines
780 B
Nix
Raw Normal View History

{ lib, buildGoModule, fetchFromGitHub, pkg-config, vips, gobject-introspection }:
2020-01-10 19:56:16 +00:00
buildGoModule rec {
pname = "imgproxy";
2021-03-11 00:06:29 +00:00
version = "2.16.2";
2020-01-10 19:56:16 +00:00
src = fetchFromGitHub {
owner = pname;
repo = pname;
2021-03-11 00:06:29 +00:00
sha256 = "sha256-wr4yOrzZT/4WtRze9Yp+M18jusxdddoDd4xs5P7d5oQ=";
2020-01-10 19:56:16 +00:00
rev = "v${version}";
};
2021-03-11 00:06:29 +00:00
vendorSha256 = "sha256-7IpMgsATQ1SMuBOF9agHIN2Lx6OKxRr0Zk5SRFxHiQ4=";
2020-01-10 19:56:16 +00:00
doCheck = false;
2020-03-17 17:43:54 +00:00
nativeBuildInputs = [ pkg-config ];
buildInputs = [ gobject-introspection vips ];
2020-01-10 19:56:16 +00:00
preBuild = ''
export CGO_LDFLAGS_ALLOW='-(s|w)'
'';
meta = with lib; {
2020-01-10 19:56:16 +00:00
description = "Fast and secure on-the-fly image processing server written in Go";
homepage = "https://imgproxy.net";
license = licenses.mit;
maintainers = with maintainers; [ paluh ];
};
2020-05-21 21:17:19 +00:00
}