cozy: fix launch

This commit is contained in:
2023-06-14 22:27:03 +00:00
parent 339c0a47ab
commit 79772d4e3d
2 changed files with 11 additions and 0 deletions

View File

@@ -79,6 +79,8 @@ let
browserpass = callPackage ./patched/browserpass { inherit (unpatched) browserpass; }; browserpass = callPackage ./patched/browserpass { inherit (unpatched) browserpass; };
cozy = callPackage ./patched/cozy { inherit (unpatched) cozy; };
# mozilla keeps nerfing itself and removing configuration options # mozilla keeps nerfing itself and removing configuration options
firefox-unwrapped = callPackage ./patched/firefox-unwrapped { inherit (unpatched) firefox-unwrapped; }; firefox-unwrapped = callPackage ./patched/firefox-unwrapped { inherit (unpatched) firefox-unwrapped; };

View File

@@ -0,0 +1,9 @@
{ cozy, fetchpatch }: cozy.overrideAttrs (upstream: {
patches = upstream.patches or [] ++ [
(fetchpatch {
# 2023/03/29: Fix "invalid version" crash on startup
url = "https://github.com/geigi/cozy/pull/762.diff";
hash = "sha256-Wk03NGVU7OsQu3AGILtRsQX2r+wPOt5U85cOWu4q6Uo=";
})
];
})