Merge pull request #77469 from paluh/imgproxy

imgproxy: init at 2.8.1
This commit is contained in:
Silvan Mosberger 2020-03-07 02:26:41 +01:00 committed by GitHub
commit d50d46941e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 40 additions and 0 deletions

View file

@ -5492,6 +5492,12 @@
githubId = 11016164;
name = "Fedor Pakhomov";
};
paluh = {
email = "paluho@gmail.com";
github = "paluh";
githubId = 190249;
name = "Tomasz Rybarczyk";
};
pamplemousse = {
email = "xav.maso@gmail.com";
github = "Pamplemousse";

View file

@ -0,0 +1,32 @@
{ lib, buildGoModule, fetchFromGitHub, pkg-config, vips, gobject-introspection }:
buildGoModule rec {
pname = "imgproxy";
version = "2.8.1";
src = fetchFromGitHub {
owner = pname;
repo = pname;
sha256 = "00hhgh6nrzg2blc6yl8rph5h5w7swlkbh0zgsj7xr0lkm10879pc";
rev = "v${version}";
};
modSha256 = "0kgd8lwcdns3skvd4bj4z85mq6hkk79mb0zzwky0wqxni8f73s6w";
buildInputs = [
gobject-introspection
pkg-config
vips
];
preBuild = ''
export CGO_LDFLAGS_ALLOW='-(s|w)'
'';
meta = with lib; {
description = "Fast and secure on-the-fly image processing server written in Go";
homepage = "https://imgproxy.net";
license = licenses.mit;
maintainers = with maintainers; [ paluh ];
};
}

View file

@ -15409,6 +15409,8 @@ in
theme-spring = callPackage ../servers/icingaweb2/theme-spring { };
};
imgproxy = callPackage ../servers/imgproxy { };
ircdHybrid = callPackage ../servers/irc/ircd-hybrid { };
jboss = callPackage ../servers/http/jboss { };