blob: 9352c7c58e3c8b4b61bc093eb7004ff7a2ea5a47 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
;; Make sure you have the
;; https://git.genenetwork.org/guix-bioinformatics/guix-bioinformatics
;; channel set up.
;;
;; To drop into a development environment, run
;;
;; guix shell -Df guix.scm
;;
;; To get a development environment in a container, run
;;
;; guix shell -C -Df guix.scm
(use-modules (gn packages genenetwork)
(guix gexp)
(guix git-download)
(guix packages))
(define %source-dir (dirname (current-filename)))
(package
(inherit genenetwork3)
(source (local-file %source-dir "genenetwork3-checkout"
#:recursive? #t
#:select? (git-predicate %source-dir))))
|