From 2e182005ed13315431aff1ae5d619c2601775d39 Mon Sep 17 00:00:00 2001 From: foo-dogsquared Date: Wed, 5 Jan 2022 20:45:37 +0800 Subject: [PATCH] photon-rss: fix the 404 error Didn't realize it caused an error since the package name was finalized in the last minute. Whoops... --- pkgs/photon-rss.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/photon-rss.nix b/pkgs/photon-rss.nix index a371574b..cf6ee805 100644 --- a/pkgs/photon-rss.nix +++ b/pkgs/photon-rss.nix @@ -6,7 +6,7 @@ buildGoModule rec { src = fetchFromSourcehut { owner = "~ghost08"; - repo = pname; + repo = "photon"; rev = "57687766a71add4751f68052666fed638fc45891"; sha256 = "sha256-Q4WD1s9kvt5khvw9Zg7A688IECponIQ3HTAMoQpeQvY="; }; @@ -16,7 +16,7 @@ buildGoModule rec { postInstall = '' # Move the plugins somewhere. - install -Dm644 plugins/* -t $out/share/${pname} + install -Dm644 plugins/* -t $out/share/photon ''; meta = with lib; {