nixpkgs/pkgs/servers/imgproxy/default.nix

32 lines
835 B
Nix
Raw Normal View History

2020-03-21 10:26:00 +00:00
{ stdenv, buildGoModule, fetchFromGitHub, pkg-config, vips, gobject-introspection, Security }:
2020-01-10 19:56:16 +00:00
buildGoModule rec {
pname = "imgproxy";
version = "2.8.1";
src = fetchFromGitHub {
owner = pname;
repo = pname;
sha256 = "00hhgh6nrzg2blc6yl8rph5h5w7swlkbh0zgsj7xr0lkm10879pc";
rev = "v${version}";
};
modSha256 = "0kgd8lwcdns3skvd4bj4z85mq6hkk79mb0zzwky0wqxni8f73s6w";
2020-03-17 17:43:54 +00:00
nativeBuildInputs = [ pkg-config ];
2020-03-21 10:26:00 +00:00
buildInputs = [ gobject-introspection vips ]
++ stdenv.lib.optionals stdenv.isDarwin [ Security ];
2020-01-10 19:56:16 +00:00
preBuild = ''
export CGO_LDFLAGS_ALLOW='-(s|w)'
'';
2020-03-21 10:26:00 +00:00
meta = with stdenv.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 ];
};
}