nixpkgs/pkgs/servers/imgproxy/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

33 lines
830 B
Nix
Raw Normal View History

2021-04-10 19:55:25 +01:00
{ lib, buildGoModule, fetchFromGitHub, pkg-config, vips, gobject-introspection
, stdenv, libunwind }:
2020-01-10 19:56:16 +00:00
buildGoModule rec {
pname = "imgproxy";
2022-03-22 07:58:41 +00:00
version = "3.3.3";
2020-01-10 19:56:16 +00:00
src = fetchFromGitHub {
owner = pname;
repo = pname;
2022-03-22 07:58:41 +00:00
sha256 = "sha256-VS2EZUMUvzuSP/Rs0pY0qo5VcB9VU3+IzZG6AdTrhmk=";
2020-01-10 19:56:16 +00:00
rev = "v${version}";
};
2022-03-22 07:58:41 +00:00
vendorSha256 = "sha256-Rp0vTtpdKpYg/7UjX73Qwxu6dOqDr24nqp41fKN1IYw=";
2020-01-10 19:56:16 +00:00
2020-03-17 17:43:54 +00:00
nativeBuildInputs = [ pkg-config ];
2021-04-10 19:55:25 +01:00
buildInputs = [ gobject-introspection vips ]
++ lib.optionals stdenv.isDarwin [ libunwind ];
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 22:17:19 +01:00
}