about summary refs log tree commit diff
path: root/pkgs/tools/misc/barman/default.nix
diff options
context:
space:
mode:
authorWeijia Wang <9713184+wegank@users.noreply.github.com>2022-11-03 12:37:15 +0100
committerWeijia Wang <9713184+wegank@users.noreply.github.com>2022-11-03 12:37:15 +0100
commit72d82c24d29d087becd782e92ef259705420c5de (patch)
tree4c6767b122c5be271ed4d895ba5b6cfe33e47bad /pkgs/tools/misc/barman/default.nix
parent3db0fa106dc4dc66e1c6922260844a615c41b365 (diff)
barman: fix build on darwin
Diffstat (limited to 'pkgs/tools/misc/barman/default.nix')
-rw-r--r--pkgs/tools/misc/barman/default.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/pkgs/tools/misc/barman/default.nix b/pkgs/tools/misc/barman/default.nix
index 281a2ce1c17a4..70d8e98b8f7aa 100644
--- a/pkgs/tools/misc/barman/default.nix
+++ b/pkgs/tools/misc/barman/default.nix
@@ -1,5 +1,6 @@
 { fetchFromGitHub
 , lib
+, stdenv
 , python3Packages
 }:
 python3Packages.buildPythonApplication rec {
@@ -36,6 +37,9 @@ python3Packages.buildPythonApplication rec {
   disabledTests = [
     # Assertion error
     "test_help_output"
+  ] ++ lib.optionals stdenv.isDarwin [
+    # FsOperationFailed
+    "test_get_file_mode"
   ];
 
   meta = with lib; {