nixos-config/5pkgs/ratt/default.nix

27 lines
762 B
Nix
Raw Normal View History

2022-06-06 22:26:40 +02:00
{ buildGoModule, fetchFromSourcehut, lib }:
buildGoModule rec {
pname = "ratt";
2024-01-10 17:06:25 +01:00
version = "unstable-2023-10-28";
2022-06-06 22:26:40 +02:00
src = fetchFromSourcehut {
2024-01-10 17:06:25 +01:00
owner = "~makefu";
2022-06-06 22:26:40 +02:00
repo = "ratt";
2024-01-10 17:06:25 +01:00
rev = "351e0c2c03b8663332b3a2081763edcdd13aeb22";
sha256 = "sha256-eeW8hGMrcAD2VCWyiaJ7T7Tyhd9LlokyiALCFJj2P4I=";
2022-06-06 22:26:40 +02:00
};
proxyVendor = true;
2024-08-04 23:31:57 +02:00
vendorHash = "sha256-aTsQyN+5OKApGI4ckSrQEkkXpBcvuz1ghQ5FwASNzOs=";
2022-06-06 22:26:40 +02:00
# tests try to access the internet to scrape websites
doCheck = false;
meta = with lib; {
description = "A tool for converting websites to rss/atom feeds";
homepage = "https://git.sr.ht/~ghost08/ratt";
license = licenses.mit;
maintainers = with maintainers; [ kmein ];
platforms = platforms.linux ++ platforms.darwin;
};
}