diff options
author | Ludovic Courtès <ludo@gnu.org> | 2021-12-13 17:18:24 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2021-12-13 17:48:25 +0100 |
commit | 8394619baceb118df92e355377fd543bb1aa501a (patch) | |
tree | 504f07c2a9f88596a305b59ef45f941062426a52 /gnu/packages/acl.scm | |
parent | aca2defe0172868295941fd9f0e97886f6e9b2d4 (diff) | |
download | guix-8394619baceb118df92e355377fd543bb1aa501a.tar.gz |
gnu: Simplify package inputs.
This commit was obtained by running: ./pre-inst-env guix style without any additional argument.
Diffstat (limited to 'gnu/packages/acl.scm')
-rw-r--r-- | gnu/packages/acl.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/packages/acl.scm b/gnu/packages/acl.scm index b299e7d284..da6dead3c2 100644 --- a/gnu/packages/acl.scm +++ b/gnu/packages/acl.scm @@ -86,7 +86,7 @@ ((".*test/cp\\.test.*") "") ((".*test/setfacl-X\\.test.*") "")) #t))))) - (inputs `(("attr" ,attr))) + (inputs (list attr)) (native-inputs `(("gettext" ,gettext-minimal) ("perl" ,perl))) @@ -125,8 +125,8 @@ (when tests? (add-installed-pythonpath inputs outputs) (invoke "pytest" "tests"))))))) - (inputs `(("acl" ,acl))) - (native-inputs `(("python-pytest" ,python-pytest))) + (inputs (list acl)) + (native-inputs (list python-pytest)) (home-page "https://pylibacl.k1024.org/") (synopsis "POSIX.1e @acronym{ACLs, access control lists} for Python") (description |