nixpkgs-suyu/pkgs/servers/imgproxy/default.nix

35 lines
851 B
Nix
Raw Normal View History

2021-04-10 20:55:25 +02:00
{ lib, buildGoModule, fetchFromGitHub, pkg-config, vips, gobject-introspection
, stdenv, libunwind }:
2020-01-10 20:56:16 +01:00
buildGoModule rec {
pname = "imgproxy";
2021-06-17 19:07:36 +02:00
version = "2.16.4";
2020-01-10 20:56:16 +01:00
src = fetchFromGitHub {
owner = pname;
repo = pname;
2021-06-17 19:07:36 +02:00
sha256 = "sha256-25oOGkTc19PHlU0Va7IPKrvGK9pDrGqKZa6qNFMVphQ=";
2020-01-10 20:56:16 +01:00
rev = "v${version}";
};
2021-06-17 19:07:36 +02:00
vendorSha256 = "sha256-y8cXe4+jTLnM7K+na2VHGXkPgZjFYdgtDd14D8KiCas=";
2020-01-10 20:56:16 +01:00
doCheck = false;
2020-03-17 18:43:54 +01:00
nativeBuildInputs = [ pkg-config ];
2021-04-10 20:55:25 +02:00
buildInputs = [ gobject-introspection vips ]
++ lib.optionals stdenv.isDarwin [ libunwind ];
2020-01-10 20:56:16 +01:00
preBuild = ''
export CGO_LDFLAGS_ALLOW='-(s|w)'
'';
meta = with lib; {
2020-01-10 20:56:16 +01: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 23:17:19 +02:00
}