Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / applications / misc / ratt / default.nix
blob15ce7a2e14092e214fd050582648742295fd5421
1 { buildGoModule, fetchFromSourcehut, lib }:
2 buildGoModule rec {
3   pname = "ratt";
4   version = "unstable-2023-02-12";
6   src = fetchFromSourcehut {
7     owner = "~ghost08";
8     repo = "ratt";
9     rev = "ed1a675685b9d86d6602e168199ba9b4260f5f06";
10     hash = "sha256-HfS97Lxt6FAj/2/WAzLI06F/h6TP5m2lHHOTAs8XNFY=";
11   };
13   proxyVendor = true;
14   vendorHash = "sha256-6cpHDwnxdc/9YPj77JVuT5ZDFjKkF6nBX4RgZr/9fFY=";
16   # tests try to access the internet to scrape websites
17   doCheck = false;
19   meta = with lib; {
20     description = "A tool for converting websites to rss/atom feeds";
21     homepage = "https://git.sr.ht/~ghost08/ratt";
22     license = licenses.mit;
23     maintainers = with maintainers; [ kmein ];
24   };