4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
43 lines
1.3 KiB
Nix
43 lines
1.3 KiB
Nix
{ lib, stdenv, buildGoPackage, fetchgit }:
|
|
|
|
buildGoPackage rec {
|
|
pname = "morty";
|
|
version = "0.2.0";
|
|
|
|
goPackagePath = "github.com/asciimoo/morty";
|
|
|
|
src = fetchgit {
|
|
rev = "v${version}";
|
|
url = "https://github.com/asciimoo/morty";
|
|
sha256 = "1wvrdlwbpzizfg7wrcfyf1x6qllp3aw425n88z516wc9jalfqrrm";
|
|
};
|
|
|
|
goDeps = ./deps.nix;
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/asciimoo/morty";
|
|
maintainers = with maintainers; [ leenaars ];
|
|
license = licenses.agpl3;
|
|
description = "Privacy aware web content sanitizer proxy as a service";
|
|
longDescription = ''
|
|
Morty is a web content sanitizer proxy as a service. It rewrites web
|
|
pages to exclude malicious HTML tags and attributes. It also replaces
|
|
external resource references to prevent third party information leaks.
|
|
|
|
The main goal of morty is to provide a result proxy for searx, but it
|
|
can be used as a standalone sanitizer service too.
|
|
|
|
Features:
|
|
|
|
* HTML sanitization
|
|
* Rewrites HTML/CSS external references to locals
|
|
* JavaScript blocking
|
|
* No Cookies forwarded
|
|
* No Referrers
|
|
* No Caching/Etag
|
|
* Supports GET/POST forms and IFrames
|
|
* Optional HMAC URL verifier key to prevent service abuse
|
|
'';
|
|
};
|
|
}
|