Paraver: Use wrapGApps Hook for nixos

Needed to fix the error on NixOS:

  GLib-GIO-ERROR **: No GSettings schemas are installed on the system

See https://github.com/NixOS/nixpkgs/issues/16285

Reviewed-by: Rodrigo Arias Mallo <rodrigo.arias@bsc.es>
Tested-by: Rodrigo Arias Mallo <rodrigo.arias@bsc.es>
This commit is contained in:
Aleix Roca Nonell 2024-02-14 19:40:16 +01:00 committed by Rodrigo Arias Mallo
parent 3b21a32d83
commit 37ce5ef391

View File

@ -10,6 +10,7 @@
, paraverKernel
, openssl
, glibcLocales
, wrapGAppsHook
}:
let
@ -48,6 +49,10 @@ stdenv.mkDerivation rec {
"--with-openssl=${openssl.dev}"
];
nativeBuildInputs = [
wrapGAppsHook
];
buildInputs = [
autoreconfHook
boost