nixpkgs/pkgs/servers/imgproxy/default.nix

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

35 lines
955 B
Nix
Raw Normal View History

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-09-16 17:28:22 +00:00
version = "3.26.0";
2020-01-10 19:56:16 +00:00
src = fetchFromGitHub {
owner = pname;
repo = pname;
2024-09-16 17:28:22 +00:00
hash = "sha256-sjgSbKKTUq6HL7QZ3LNU1Eo+2n/KnlY7Yt80lXAR26k=";
2020-01-10 19:56:16 +00:00
rev = "v${version}";
};
2024-09-16 17:28:22 +00:00
vendorHash = "sha256-YxZuAo8l3fhCGCEQVPzKeVdL7i4jWe8rZ5pILI4NVP4=";
2020-01-10 19:56:16 +00:00
nativeBuildInputs = [ pkg-config gobject-introspection ];
2020-03-17 17:43:54 +00:00
buildInputs = [ vips ]
2021-04-10 18:55:25 +00:00
++ lib.optionals stdenv.hostPlatform.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";
mainProgram = "imgproxy";
2020-01-10 19:56:16 +00:00
homepage = "https://imgproxy.net";
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
}