diff options
author | makefu <github@syntax-fehler.de> | 2022-06-06 22:26:40 +0200 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2022-06-06 22:26:40 +0200 |
commit | 56cb9de375f66e5c2d8d465d830aaea2040587bc (patch) | |
tree | b92271785d6141a95a032b245fee6877f9fde50c /makefu/5pkgs/ratt | |
parent | 04f428e42f4cddb43ebf7cbec58802828cd1e7b8 (diff) |
ma pkgs.ratt: override default
Diffstat (limited to 'makefu/5pkgs/ratt')
-rw-r--r-- | makefu/5pkgs/ratt/default.nix | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/makefu/5pkgs/ratt/default.nix b/makefu/5pkgs/ratt/default.nix new file mode 100644 index 000000000..392f1ff9e --- /dev/null +++ b/makefu/5pkgs/ratt/default.nix @@ -0,0 +1,26 @@ +{ buildGoModule, fetchFromSourcehut, lib }: +buildGoModule rec { + pname = "ratt"; + version = "unstable-2022-05-09"; + + src = fetchFromSourcehut { + owner = "~ghost08"; + repo = "ratt"; + rev = "bf539e1cb04017f5e9d248a8e5f7a6f22f77d06e"; + sha256 = "0pfz6wnmpwabklayah3bddxkhvg64f5hfyvzkv3xfqpw8c70jdll"; + }; + + proxyVendor = true; + vendorSha256 = "0wf299i5z86gysrcmgd5x6zq589qn7h69k1sz4xl5yrhn53mdsq0"; + + # 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; + }; +} |