about summary refs log tree commit diff
path: root/pkgs/servers/imgproxy/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/servers/imgproxy/default.nix')
-rw-r--r--pkgs/servers/imgproxy/default.nix34
1 files changed, 0 insertions, 34 deletions
diff --git a/pkgs/servers/imgproxy/default.nix b/pkgs/servers/imgproxy/default.nix
deleted file mode 100644
index 5388376720c9..000000000000
--- a/pkgs/servers/imgproxy/default.nix
+++ /dev/null
@@ -1,34 +0,0 @@
-{ lib, buildGoModule, fetchFromGitHub, pkg-config, vips, gobject-introspection
-, stdenv, libunwind }:
-
-buildGoModule rec {
-  pname = "imgproxy";
-  version = "3.25.0";
-
-  src = fetchFromGitHub {
-    owner = pname;
-    repo = pname;
-    hash = "sha256-TkfyhePilOwuW6+MtTqYUYvpP/FnFhpsHt2APMFNbvo=";
-    rev = "v${version}";
-  };
-
-  vendorHash = "sha256-LlVZRHotJcHtgeGXIDnbIwpO8iCrBB8nXBnqzHcrJWk=";
-
-  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 ];
-  };
-}