From a1f5f3295fa262eaaca4651ab9a56c18e289f1d8 Mon Sep 17 00:00:00 2001 From: Aaron Jheng Date: Sun, 20 Aug 2023 10:21:19 +0800 Subject: [PATCH] ratt: unstable-2022-01-11 -> unstable-2023-02-12 --- pkgs/applications/misc/ratt/default.nix | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/pkgs/applications/misc/ratt/default.nix b/pkgs/applications/misc/ratt/default.nix index 8b49232051d1..15ce7a2e1409 100644 --- a/pkgs/applications/misc/ratt/default.nix +++ b/pkgs/applications/misc/ratt/default.nix @@ -1,17 +1,17 @@ { buildGoModule, fetchFromSourcehut, lib }: buildGoModule rec { pname = "ratt"; - version = "unstable-2022-01-11"; + version = "unstable-2023-02-12"; src = fetchFromSourcehut { owner = "~ghost08"; repo = "ratt"; - rev = "eac7e14b15ad4e916e7d072780397c414c740630"; - hash = "sha256-/WzPF98MovNg4t5NJhL2Z1bAFDG/3I56M9YgRJF7Wjk="; + rev = "ed1a675685b9d86d6602e168199ba9b4260f5f06"; + hash = "sha256-HfS97Lxt6FAj/2/WAzLI06F/h6TP5m2lHHOTAs8XNFY="; }; proxyVendor = true; - vendorSha256 = "sha256-4TEdnJ7lCuBka6rtoKowf5X3VqCgfwvGHeJ5B5Q5C20="; + vendorHash = "sha256-6cpHDwnxdc/9YPj77JVuT5ZDFjKkF6nBX4RgZr/9fFY="; # tests try to access the internet to scrape websites doCheck = false; @@ -21,6 +21,5 @@ buildGoModule rec { homepage = "https://git.sr.ht/~ghost08/ratt"; license = licenses.mit; maintainers = with maintainers; [ kmein ]; - platforms = platforms.linux ++ platforms.darwin; }; }