diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2020-07-23 16:58:23 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2020-07-23 23:51:22 +0200 |
commit | 9f38cdac5e17d71fc27848383d7ec29e4514cd4f (patch) | |
tree | 5fa20e35e1d3e4581f3b8aa7adabf066bc014e9e /gnu/packages/backup.scm | |
parent | 5d26ba7ee3c07fad1f4054396eaeec6f992a9eac (diff) | |
download | guix-9f38cdac5e17d71fc27848383d7ec29e4514cd4f.tar.gz |
gnu: burp: Add ACL support.
* gnu/packages/backup.scm (burp)[inputs]: Add acl.
Diffstat (limited to 'gnu/packages/backup.scm')
-rw-r--r-- | gnu/packages/backup.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/backup.scm b/gnu/packages/backup.scm index 532cb66c70..d464598ba2 100644 --- a/gnu/packages/backup.scm +++ b/gnu/packages/backup.scm @@ -1089,7 +1089,8 @@ interractive mode.") (string-append prefix " 3600" suffix "\n"))) #t))))) (inputs - `(("librsync" ,librsync) + `(("acl" ,acl) + ("librsync" ,librsync) ("openssl" ,openssl) ("uthash" ,uthash) ("zlib" ,zlib))) |