Commit d4c5ec6f authored by Artturin's avatar Artturin
Browse files

evolution: Fix command not found in the backup restore

parent 8c8c5aba
Loading
Loading
Loading
Loading
+15 −0
Original line number Diff line number Diff line
@@ -42,6 +42,9 @@
  p11-kit,
  openldap,
  spamassassin,
  gnutar,
  gzip,
  xz,
}:

stdenv.mkDerivation rec {
@@ -116,6 +119,18 @@ stdenv.mkDerivation rec {
    "-DWITH_OPENLDAP=${openldap}"
  ];

  preFixup = ''
    gappsWrapperArgs+=(
      --prefix PATH : "${
        lib.makeBinPath [
          gnutar
          gzip
          xz
        ]
      }"
    )
  '';

  requiredSystemFeatures = [
    "big-parallel"
  ];