depot/third_party/nixpkgs/pkgs/applications/misc/ratt/default.nix
Default email bcb2f287e1 Project import generated by Copybara.
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
2024-06-20 20:27:18 +05:30

26 lines
732 B
Nix

{ buildGoModule, fetchFromSourcehut, lib }:
buildGoModule rec {
pname = "ratt";
version = "unstable-2023-02-12";
src = fetchFromSourcehut {
owner = "~ghost08";
repo = "ratt";
rev = "ed1a675685b9d86d6602e168199ba9b4260f5f06";
hash = "sha256-HfS97Lxt6FAj/2/WAzLI06F/h6TP5m2lHHOTAs8XNFY=";
};
proxyVendor = true;
vendorHash = "sha256-L8mDs9teQJW6P3dhKSLfzbpA7kzhJk61oR2q0ME+u0M=";
# tests try to access the internet to scrape websites
doCheck = false;
meta = with lib; {
description = "Tool for converting websites to rss/atom feeds";
homepage = "https://git.sr.ht/~ghost08/ratt";
license = licenses.mit;
maintainers = with maintainers; [ kmein ];
mainProgram = "ratt";
};
}