komikku: update to latest rev

This commit is contained in:
Colin 2023-07-12 08:06:45 +00:00
parent e317cc4c12
commit 2ae187ea62
2 changed files with 13 additions and 0 deletions

View File

@ -103,6 +103,8 @@ let
# jackett doesn't allow customization of the bind address: this will probably always be here.
jackett = callPackage ./patched/jackett { inherit (unpatched) jackett; };
komikku = callPackage ./patched/komikku { inherit (unpatched) komikku; };
lemmy-server = callPackage ./patched/lemmy-server { inherit (unpatched) lemmy-server; };
phoc = callPackage ./patched/phoc { inherit (unpatched) phoc; };

View File

@ -0,0 +1,11 @@
{ komikku
, fetchFromGitLab
}:
komikku.overrideAttrs (upstream: {
src = fetchFromGitLab {
owner = "valos";
repo = "Komikku";
rev = "7dcf2b3d0ba685396872780b1ce75d01cbe02ebe";
hash = "sha256-LzgHPuIpxy0ropiNycdxZP6onjK2JpMRqkkdmJGA4nE=";
};
})