mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 06:53:01 +00:00
keepassxc: prevent deadlock with just one core
See https://github.com/keepassxreboot/keepassxc/issues/10391 An alternative would be to set virtualisation.cores = 2; in the keepassxc nixos test.
This commit is contained in:
parent
852523aa47
commit
c8c430ecf9
@ -1,6 +1,7 @@
|
||||
{ lib
|
||||
, stdenv
|
||||
, fetchFromGitHub
|
||||
, fetchpatch
|
||||
, cmake
|
||||
, qttools
|
||||
|
||||
@ -61,6 +62,12 @@ stdenv.mkDerivation rec {
|
||||
|
||||
patches = [
|
||||
./darwin.patch
|
||||
|
||||
# https://github.com/keepassxreboot/keepassxc/issues/10391
|
||||
(fetchpatch {
|
||||
url = "https://github.com/keepassxreboot/keepassxc/commit/6a9ed210792ac60d9ed35cc702500e5ebbb95622.patch";
|
||||
hash = "sha256-CyaVMfJ0O+5vgvmwI6rYbf0G7ryKFcLv3p4b/D6Pzw8=";
|
||||
})
|
||||
];
|
||||
|
||||
cmakeFlags = [
|
||||
|
Loading…
Reference in New Issue
Block a user