From 8394619baceb118df92e355377fd543bb1aa501a Mon Sep 17 00:00:00 2001 From: Ludovic Courtès Date: Mon, 13 Dec 2021 17:18:24 +0100 Subject: gnu: Simplify package inputs. This commit was obtained by running: ./pre-inst-env guix style without any additional argument. --- gnu/packages/pascal.scm | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) (limited to 'gnu/packages/pascal.scm') diff --git a/gnu/packages/pascal.scm b/gnu/packages/pascal.scm index e199f981a1..af7857f084 100644 --- a/gnu/packages/pascal.scm +++ b/gnu/packages/pascal.scm @@ -86,11 +86,7 @@ (define-public fpc (build-system gnu-build-system) (supported-systems '("i686-linux" "x86_64-linux")) (inputs - `(("expat" ,expat) - ("glibc" ,glibc) - ("ld-wrapper" ,ld-wrapper) - ("ncurses" ,ncurses) - ("zlib" ,zlib))) + (list expat glibc ld-wrapper ncurses zlib)) (native-inputs ;; FPC is built with FPC, so we need bootstrap binaries. `(("fpc-binary" ,(match (or (%current-target-system) @@ -270,8 +266,7 @@ (define-public p2c (chdir "src") #t))))) (native-inputs - `(("perl" ,perl) - ("which" ,which))) + (list perl which)) (synopsis "p2c converts Pascal programs to C programs--which you can then compile using gcc") (description "This package provides @command{p2c}, a program to convert -- cgit v1.2.3