-
Notifications
You must be signed in to change notification settings - Fork 0
/
guix.scm
35 lines (31 loc) · 1019 Bytes
/
guix.scm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
;;; rcas-web - Web interface for RCAS
;;; Copyright © 2016, 2017, 2019 Ricardo Wurmus <[email protected]>
;;;
;;; This file is part of rcas-web.
;;;
;;; rcas-web is free software; see COPYING file for details.
;;; Run the following command to enter a development environment for
;;; RCAS web:
;;;
;;; $ guix environment -l guix.scm
(use-modules ((guix licenses) #:prefix license:)
(guix packages)
(guix download)
(guix utils)
(guix build-system gnu)
(gnu packages)
(gnu packages autotools)
(gnu packages bioinformatics)
(gnu packages statistics)
(gnu packages guile)
(gnu packages guile-xyz)
(gnu packages pkg-config))
(define-public rcas-web/devel
(package (inherit rcas-web)
(name "rcas-web-development")
(source #f)
(native-inputs
`(("autoconf" ,autoconf)
("automake" ,automake)
,@(package-native-inputs rcas-web)))))
rcas-web/devel