about summary refs log tree commit diff
path: root/nixpkgs/pkgs/servers/imgproxy/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/servers/imgproxy/default.nix')
-rw-r--r--nixpkgs/pkgs/servers/imgproxy/default.nix34
1 files changed, 34 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/servers/imgproxy/default.nix b/nixpkgs/pkgs/servers/imgproxy/default.nix
new file mode 100644
index 000000000000..3187346c07eb
--- /dev/null
+++ b/nixpkgs/pkgs/servers/imgproxy/default.nix
@@ -0,0 +1,34 @@
+{ lib, buildGoModule, fetchFromGitHub, pkg-config, vips, gobject-introspection
+, stdenv, libunwind }:
+
+buildGoModule rec {
+  pname = "imgproxy";
+  version = "3.23.0";
+
+  src = fetchFromGitHub {
+    owner = pname;
+    repo = pname;
+    hash = "sha256-nsXIy/JpI7nDu40dUGPosMAOtFt/OzfSWyxD6JuKA+s=";
+    rev = "v${version}";
+  };
+
+  vendorHash = "sha256-KtqXhi8VwH1aZt/vLHuug5MJLchs0t4tqA7PIZUVPHQ=";
+
+  nativeBuildInputs = [ pkg-config gobject-introspection ];
+
+  buildInputs = [ vips ]
+    ++ lib.optionals stdenv.isDarwin [ libunwind ];
+
+  preBuild = ''
+    export CGO_LDFLAGS_ALLOW='-(s|w)'
+  '';
+
+  meta = with lib; {
+    description = "Fast and secure on-the-fly image processing server written in Go";
+    mainProgram = "imgproxy";
+    homepage = "https://imgproxy.net";
+    changelog = "https://github.com/imgproxy/imgproxy/blob/${src.rev}/CHANGELOG.md";
+    license = licenses.mit;
+    maintainers = with maintainers; [ paluh ];
+  };
+}