diff options
Diffstat (limited to 'manifest.scm')
-rw-r--r-- | manifest.scm | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/manifest.scm b/manifest.scm new file mode 100644 index 0000000..12ba0e0 --- /dev/null +++ b/manifest.scm @@ -0,0 +1,16 @@ +(use-modules ((gnu packages bioinformatics) #:select (ccwl)) + ((cwltest-package) #:select (cwltest)) + ((ravanan-package) #:select (ravanan)) + (srfi srfi-1)) + +(define (manifest-cons* . args) + "ARGS is of the form (PACKAGES ... ONTO-MANIFEST). Return a manifest +with PACKAGES and all packages in ONTO-MANIFEST." + (let ((packages (drop-right args 1)) + (onto-manifest (last args))) + (manifest (append (map package->manifest-entry packages) + (manifest-entries onto-manifest))))) + +(manifest-cons* ccwl + cwltest + (package->development-manifest ravanan)) |