about summary refs log tree commit diff
path: root/nixpkgs/pkgs/servers/filtron/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/servers/filtron/default.nix')
-rw-r--r--nixpkgs/pkgs/servers/filtron/default.nix26
1 files changed, 26 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/servers/filtron/default.nix b/nixpkgs/pkgs/servers/filtron/default.nix
new file mode 100644
index 000000000000..36d64db4e215
--- /dev/null
+++ b/nixpkgs/pkgs/servers/filtron/default.nix
@@ -0,0 +1,26 @@
+{ lib, buildGoModule, fetchFromGitHub }:
+
+buildGoModule rec {
+  pname = "filtron";
+  version = "0.2.0";
+
+  src = fetchFromGitHub {
+    owner = "asciimoo";
+    repo = "filtron";
+    rev = "v${version}";
+    sha256 = "18d3h0i2sfqbc0bjx26jm2n9f37zwp8z9z4wd17sw7nvkfa72a26";
+  };
+
+  vendorSha256 = "05q2g591xl08h387mm6njabvki19yih63dfsafgpc9hyk5ydf2n9";
+
+  # The upstream test checks are obsolete/unmaintained.
+  doCheck = false;
+
+  meta = with lib; {
+    description = "Reverse HTTP proxy to filter requests by different rules.";
+    homepage = "https://github.com/asciimoo/filtron";
+    license = licenses.agpl3;
+    maintainers = [ maintainers.dasj19 ];
+    platforms = platforms.linux;
+  };
+}