forked from mirrors/nixpkgs
imgproxy: init at 2.8.1
This commit is contained in:
parent
2a38b364e6
commit
d13bf9a14f
32
pkgs/servers/imgproxy/default.nix
Normal file
32
pkgs/servers/imgproxy/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -15231,6 +15231,8 @@ in
|
||||||
theme-spring = callPackage ../servers/icingaweb2/theme-spring { };
|
theme-spring = callPackage ../servers/icingaweb2/theme-spring { };
|
||||||
};
|
};
|
||||||
|
|
||||||
|
imgproxy = callPackage ../servers/imgproxy { };
|
||||||
|
|
||||||
ircdHybrid = callPackage ../servers/irc/ircd-hybrid { };
|
ircdHybrid = callPackage ../servers/irc/ircd-hybrid { };
|
||||||
|
|
||||||
jboss = callPackage ../servers/http/jboss { };
|
jboss = callPackage ../servers/http/jboss { };
|
||||||
|
|
Loading…
Reference in a new issue