1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs synced 2024-10-19 03:47:13 -04:00
nixpkgs/pkgs/servers/imgproxy/default.nix

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

34 lines
912 B
Nix
Raw Normal View History

2021-04-10 14:55:25 -04:00
{ lib, buildGoModule, fetchFromGitHub, pkg-config, vips, gobject-introspection
, stdenv, libunwind }:
2020-01-10 14:56:16 -05:00
buildGoModule rec {
pname = "imgproxy";
2023-07-17 13:38:32 -04:00
version = "3.18.2";
2020-01-10 14:56:16 -05:00
src = fetchFromGitHub {
owner = pname;
repo = pname;
2023-07-17 13:38:32 -04:00
hash = "sha256-iMzaeB086VohyzUJqYxdnGi0grosrJD1H0AgK5A75XM=";
2020-01-10 14:56:16 -05:00
rev = "v${version}";
};
2023-05-13 01:53:05 -04:00
vendorHash = "sha256-5o1i88v+1UGYXP2SzyM6seyidrj1Z3Q64w/gi07xf4w=";
2020-01-10 14:56:16 -05:00
nativeBuildInputs = [ pkg-config gobject-introspection ];
2020-03-17 13:43:54 -04:00
buildInputs = [ vips ]
2021-04-10 14:55:25 -04:00
++ lib.optionals stdenv.isDarwin [ libunwind ];
2020-01-10 14:56:16 -05:00
preBuild = ''
export CGO_LDFLAGS_ALLOW='-(s|w)'
'';
meta = with lib; {
2020-01-10 14:56:16 -05:00
description = "Fast and secure on-the-fly image processing server written in Go";
homepage = "https://imgproxy.net";
changelog = "https://github.com/imgproxy/imgproxy/blob/${src.rev}/CHANGELOG.md";
2020-01-10 14:56:16 -05:00
license = licenses.mit;
maintainers = with maintainers; [ paluh ];
};
2020-05-21 17:17:19 -04:00
}