aboutsummaryrefslogtreecommitdiff
path: root/guix.scm
blob: 75b3a8dbdd7550cce2a6a5869e2b33ac6307b19a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
;; Drop into a development environment using
;;
;; guix shell -m guix.scm
;;
;; Happy hacking!

(use-modules (gnu packages bioinformatics)
             (gnu packages graphviz)
             (gnu packages guile)
             (gnu packages guile-xyz))

(packages->manifest
 (list guile-3.0 guile-dbi guile-dbd-mysql
       ;; We abuse (ccwl graphviz) as a library to visualize the database
       ;; schema. Hence we need ccwl and guile-libyaml.
       ccwl graphviz guile-libyaml))