2022-01-13 20:06:32 +00:00
|
|
|
{ buildGoModule, fetchFromSourcehut, lib }:
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "ratt";
|
2023-08-22 20:05:09 +00:00
|
|
|
version = "unstable-2023-02-12";
|
2022-01-13 20:06:32 +00:00
|
|
|
|
|
|
|
src = fetchFromSourcehut {
|
|
|
|
owner = "~ghost08";
|
|
|
|
repo = "ratt";
|
2023-08-22 20:05:09 +00:00
|
|
|
rev = "ed1a675685b9d86d6602e168199ba9b4260f5f06";
|
|
|
|
hash = "sha256-HfS97Lxt6FAj/2/WAzLI06F/h6TP5m2lHHOTAs8XNFY=";
|
2022-01-13 20:06:32 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
proxyVendor = true;
|
2024-04-21 15:54:59 +00:00
|
|
|
vendorHash = "sha256-L8mDs9teQJW6P3dhKSLfzbpA7kzhJk61oR2q0ME+u0M=";
|
2022-01-13 20:06:32 +00:00
|
|
|
|
|
|
|
# tests try to access the internet to scrape websites
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = with lib; {
|
2024-06-20 14:57:18 +00:00
|
|
|
description = "Tool for converting websites to rss/atom feeds";
|
2022-01-13 20:06:32 +00:00
|
|
|
homepage = "https://git.sr.ht/~ghost08/ratt";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ kmein ];
|
2024-02-29 20:09:43 +00:00
|
|
|
mainProgram = "ratt";
|
2022-01-13 20:06:32 +00:00
|
|
|
};
|
|
|
|
}
|