forked from mirrors/nixpkgs
borgbackup: Add acl library to build inputs on linux platform
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] 72232a9bd5/setup.py (L768)
This commit is contained in:
parent
c9b8bbd039
commit
b159ed5069
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
];
|
||||
|
|
Loading…
Add table
Reference in a new issue