From 179925c5d88ae38bc28baf470d350461d49ebede Mon Sep 17 00:00:00 2001 From: Arun Isaac Date: Tue, 2 Nov 2021 01:26:25 +0530 Subject: guix.scm: Define ccwl as a separate variable. This make it easier to refer to it in the changelog. * guix.scm (ccwl): New variable. Return ccwl. --- guix.scm | 49 ++++++++++++++++++++++++++----------------------- 1 file changed, 26 insertions(+), 23 deletions(-) (limited to 'guix.scm') diff --git a/guix.scm b/guix.scm index ade30d8..9339da0 100644 --- a/guix.scm +++ b/guix.scm @@ -42,26 +42,29 @@ (define %source-dir (dirname (current-filename))) -(package - (name "ccwl") - (version "0.1.0") - (source (local-file %source-dir - #:recursive? #t - #:select? (git-predicate %source-dir))) - (build-system gnu-build-system) - (arguments - '(#:make-flags '("GUILE_AUTO_COMPILE=0"))) ; to prevent guild warnings - (inputs - `(("guile" ,guile-3.0))) - (native-inputs - `(("autoconf" ,autoconf) - ("automake" ,automake) - ("pkg-config" ,pkg-config) - ;; To build documentation - ("cwltool" ,cwltool) - ("graphviz" ,graphviz) - ("skribilo" ,skribilo))) - (home-page "https://git.systemreboot.net/ccwl") - (synopsis "Concise common workflow language") - (description "Concise common workflow language") - (license license:gpl3+)) +(define ccwl + (package + (name "ccwl") + (version "0.1.0") + (source (local-file %source-dir + #:recursive? #t + #:select? (git-predicate %source-dir))) + (build-system gnu-build-system) + (arguments + '(#:make-flags '("GUILE_AUTO_COMPILE=0"))) ; to prevent guild warnings + (inputs + `(("guile" ,guile-3.0))) + (native-inputs + `(("autoconf" ,autoconf) + ("automake" ,automake) + ("pkg-config" ,pkg-config) + ;; To build documentation + ("cwltool" ,cwltool) + ("graphviz" ,graphviz) + ("skribilo" ,skribilo))) + (home-page "https://git.systemreboot.net/ccwl") + (synopsis "Concise common workflow language") + (description "Concise common workflow language") + (license license:gpl3+))) + +ccwl -- cgit v1.2.3