Merge pull request #93181 from dasj19/filtron

This commit is contained in:
Sandro 2021-08-22 20:20:01 +02:00 committed by GitHub
commit ab7abc8271
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 28 additions and 0 deletions

View File

@ -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;
};
}

View File

@ -15364,6 +15364,8 @@ with pkgs;
filter-audio = callPackage ../development/libraries/filter-audio {};
filtron = callPackage ../servers/filtron {};
flann = callPackage ../development/libraries/flann { };
flatcc = callPackage ../development/libraries/flatcc { };