summary refs log tree commit diff
diff options
context:
space:
mode:
authorArun Isaac2021-11-02 01:26:25 +0530
committerArun Isaac2021-11-02 01:31:56 +0530
commit179925c5d88ae38bc28baf470d350461d49ebede (patch)
tree579f767a6e5b4c67e70853ebcf925387c5165b5b
parentde4f458df3e58408e1af2375d0f3b3f86b350a73 (diff)
downloadccwl-179925c5d88ae38bc28baf470d350461d49ebede.tar.gz
ccwl-179925c5d88ae38bc28baf470d350461d49ebede.tar.lz
ccwl-179925c5d88ae38bc28baf470d350461d49ebede.zip
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.
-rw-r--r--guix.scm49
1 files changed, 26 insertions, 23 deletions
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