cozy: fix launch
This commit is contained in:
@@ -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; };
|
||||||
|
|
||||||
|
9
pkgs/patched/cozy/default.nix
Normal file
9
pkgs/patched/cozy/default.nix
Normal 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=";
|
||||||
|
})
|
||||||
|
];
|
||||||
|
})
|
Reference in New Issue
Block a user