about summary refs log tree commit diff
path: root/nixpkgs/pkgs/servers/web-apps/morty/default.nix
blob: 2aa6f0d1cf891a67b9c6848d522c9099dfb03a3e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{ lib, buildGoModule, fetchFromGitHub }:

buildGoModule {
  pname = "morty";
  version = "unstable-2021-04-22";

  src = fetchFromGitHub {
    owner = "asciimoo";
    repo = "morty";
    rev = "f5bff1e285d3f973cacf73318e55175edafd633f";
    sha256 = "sha256-ik2VAPdxllt76UVFt77c1ltxIwFNahAKjn3FuErNFYo=";
  };

  vendorHash = "sha256-3sllcoTDYQBAyAT7e9KeKNrlTEbgnoZc0Vt0ksQByvo=";

  meta = with lib; {
    description = "Privacy aware web content sanitizer proxy as a service";
    longDescription = ''
      Morty 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.
    '';
    homepage = "https://github.com/asciimoo/morty";
    maintainers = with maintainers; [ leenaars SuperSandro2000 ];
    license = licenses.agpl3;
  };
}