tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
filtron: init at 0.2.0
Daniel Șerbănescu
4 years ago
64de340d
870959c7
+28
2 changed files
expand all
collapse all
unified
split
pkgs
servers
filtron
default.nix
top-level
all-packages.nix
+26
pkgs/servers/filtron/default.nix
···
1
1
+
{ lib, buildGoModule, fetchFromGitHub }:
2
2
+
3
3
+
buildGoModule rec {
4
4
+
pname = "filtron";
5
5
+
version = "0.2.0";
6
6
+
7
7
+
src = fetchFromGitHub {
8
8
+
owner = "asciimoo";
9
9
+
repo = "filtron";
10
10
+
rev = "v${version}";
11
11
+
sha256 = "18d3h0i2sfqbc0bjx26jm2n9f37zwp8z9z4wd17sw7nvkfa72a26";
12
12
+
};
13
13
+
14
14
+
vendorSha256 = "05q2g591xl08h387mm6njabvki19yih63dfsafgpc9hyk5ydf2n9";
15
15
+
16
16
+
# The upstream test checks are obsolete/unmaintained.
17
17
+
doCheck = false;
18
18
+
19
19
+
meta = with lib; {
20
20
+
description = "Reverse HTTP proxy to filter requests by different rules.";
21
21
+
homepage = "https://github.com/asciimoo/filtron";
22
22
+
license = licenses.agpl3;
23
23
+
maintainers = [ maintainers.dasj19 ];
24
24
+
platforms = platforms.linux;
25
25
+
};
26
26
+
}
+2
pkgs/top-level/all-packages.nix
···
15366
15366
15367
15367
filter-audio = callPackage ../development/libraries/filter-audio {};
15368
15368
15369
15369
+
filtron = callPackage ../servers/filtron {};
15370
15370
+
15369
15371
flann = callPackage ../development/libraries/flann { };
15370
15372
15371
15373
flatcc = callPackage ../development/libraries/flatcc { };