diff options
author | Gregor Kleen <gkleen@yggdrasil.li> | 2025-02-13 20:02:34 +0100 |
---|---|---|
committer | Gregor Kleen <gkleen@yggdrasil.li> | 2025-02-13 20:02:34 +0100 |
commit | 10b7a66bdf7181026914e753c5260a5adef04214 (patch) | |
tree | 0c75073e34eef3da2519a9c071a9e32c1d222dfc /overlays/keepassxc/default.nix | |
parent | 17dd0a467339a51b1b89456ade9ebf4a2e494537 (diff) | |
download | nixos-10b7a66bdf7181026914e753c5260a5adef04214.tar nixos-10b7a66bdf7181026914e753c5260a5adef04214.tar.gz nixos-10b7a66bdf7181026914e753c5260a5adef04214.tar.bz2 nixos-10b7a66bdf7181026914e753c5260a5adef04214.tar.xz nixos-10b7a66bdf7181026914e753c5260a5adef04214.zip |
...
Diffstat (limited to 'overlays/keepassxc/default.nix')
-rw-r--r-- | overlays/keepassxc/default.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/overlays/keepassxc/default.nix b/overlays/keepassxc/default.nix index 25429a66..46b3a459 100644 --- a/overlays/keepassxc/default.nix +++ b/overlays/keepassxc/default.nix | |||
@@ -1,7 +1,7 @@ | |||
1 | { final, prev, ... }: | 1 | { final, prev, ... }: |
2 | { | 2 | { |
3 | keepassxc = prev.keepassxc.overrideAttrs (oldAttrs: { | 3 | keepassxc = prev.keepassxc.overrideAttrs (oldAttrs: { |
4 | patches = (oldAttrs.patches or []) ++ [ | 4 | patches = (oldAttrs.patches or []) ++ prev.lib.optional (prev.lib.versionAtLeast oldAttrs.version "2.7.9") [ |
5 | ./database-open-dialog.patch | 5 | ./database-open-dialog.patch |
6 | ]; | 6 | ]; |
7 | }); | 7 | }); |