Skip to content

Commit

Permalink
borgbackup: Add acl library to build inputs on linux platform
Browse files Browse the repository at this point in the history
The acl libraray is only required by the borgbackup package if building on a
linux platform. Adding it only in this case should be fine. Also see the
conditional in the setup.py at [1].

[1] https://github.com/borgbackup/borg/blob/72232a9bd573aeb4818b36c9c8764b6008e9283e/setup.py#L768
  • Loading branch information
Martin Bornhold committed Nov 15, 2017
1 parent c9b8bbd commit b159ed5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkgs/tools/backup/borg/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ python3Packages.buildPythonApplication rec {
sphinx guzzle_sphinx_theme
];
buildInputs = [
acl lz4 openssl python3Packages.setuptools_scm
];
lz4 openssl python3Packages.setuptools_scm
] ++ stdenv.lib.optionals stdenv.isLinux [ acl ];
propagatedBuildInputs = with python3Packages; [
cython llfuse msgpack
];
Expand Down

0 comments on commit b159ed5

Please sign in to comment.