summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Thompson <dthompson2@worcester.edu>2015-02-09 14:33:53 -0500
committerDavid Thompson <dthompson2@worcester.edu>2015-02-09 14:33:53 -0500
commit66cc6e85f0138b15781e29a5853958d8cc4cf01d (patch)
treed7d0df1bb1e0ea691f047605b8eeb4b39a2db043
parent293294f2401f3dac6d07e9af65b5582ba893a777 (diff)
Update environment.
* env.scm: Update.
-rw-r--r--env.scm12
1 files changed, 10 insertions, 2 deletions
diff --git a/env.scm b/env.scm
index 9867c4f..823b291 100644
--- a/env.scm
+++ b/env.scm
@@ -3,7 +3,14 @@
(guix build-system gnu)
(gnu packages autotools)
(gnu packages guile)
- (gnu packages package-management))
+ (gnu packages gnupg))
+
+(define libgcrypt
+ (package (inherit libgcrypt)
+ (native-search-paths
+ (list (search-path-specification
+ (variable "LTDL_LIBRARY_PATH")
+ (files '("lib")))))))
(package
(name "guix-web")
@@ -15,7 +22,8 @@
("automake" ,automake)))
(inputs
`(("guile" ,guile-2.0)
- ("guile-json" ,guile-json)))
+ ("guile-json" ,guile-json)
+ ("libgcrypt" ,libgcrypt)))
(synopsis "Web frontend for GNU Guix")
(description "Guix-web is a web interface to the GNU Guix package
manager written in GNU Guile Scheme and JavaScript.")