Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ buildGoModule, fetchFromSourcehut, lib }: 2buildGoModule rec { 3 pname = "ratt"; 4 version = "unstable-2022-01-11"; 5 6 src = fetchFromSourcehut { 7 owner = "~ghost08"; 8 repo = "ratt"; 9 rev = "eac7e14b15ad4e916e7d072780397c414c740630"; 10 hash = "sha256-/WzPF98MovNg4t5NJhL2Z1bAFDG/3I56M9YgRJF7Wjk="; 11 }; 12 13 proxyVendor = true; 14 vendorSha256 = "sha256-4TEdnJ7lCuBka6rtoKowf5X3VqCgfwvGHeJ5B5Q5C20="; 15 16 # tests try to access the internet to scrape websites 17 doCheck = false; 18 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 platforms = platforms.linux ++ platforms.darwin; 25 }; 26}