about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2022-11-06 18:41:07 -0500
committerGitHub <noreply@github.com>2022-11-06 18:41:07 -0500
commit967cc70757342b50c6b5bdd253477fdd72ec6eaf (patch)
treefc9941f312c14342449eab428eca5d0b6c39edae
parentf54c651ba521d14e2c2c225aae854946ee4f472f (diff)
parent72d82c24d29d087becd782e92ef259705420c5de (diff)
Merge pull request #199276 from wegank/barman-darwin
barman: fix build on darwin
-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; {