aboutsummaryrefslogtreecommitdiffstats
path: root/guix-env.scm
diff options
context:
space:
mode:
authorChristopher Allan Webber <cwebber@dustycloud.org>2016-03-29 11:59:31 -0700
committerChristopher Allan Webber <cwebber@dustycloud.org>2016-03-29 11:59:31 -0700
commit1c6c97c5aaca2e6d3d9bb239015fa67093d643de (patch)
treec3118a0fff1306293ee66e4485d4d3679a28940f /guix-env.scm
parentc09a54f8401c04b5b8b6c7fa8293416336fd3eef (diff)
downloadmediagoblin-1c6c97c5aaca2e6d3d9bb239015fa67093d643de.tar.lz
mediagoblin-1c6c97c5aaca2e6d3d9bb239015fa67093d643de.tar.xz
mediagoblin-1c6c97c5aaca2e6d3d9bb239015fa67093d643de.zip
guix: Add additional useful packages for development
* guix-env.scm: Added openssh, git, and rsync in the development package.
Diffstat (limited to 'guix-env.scm')
-rw-r--r--guix-env.scm6
1 files changed, 6 insertions, 0 deletions
diff --git a/guix-env.scm b/guix-env.scm
index b8e3671c..d56f8539 100644
--- a/guix-env.scm
+++ b/guix-env.scm
@@ -64,6 +64,8 @@
(gnu packages python)
(gnu packages gstreamer)
(gnu packages glib)
+ (gnu packages rsync)
+ (gnu packages ssh)
(gnu packages version-control)
((guix licenses) #:select (expat zlib) #:prefix license:))
@@ -195,4 +197,8 @@ media.")
; and texlive-texmf is very large...
("python-chardet", python-chardet)
("python-psycopg2" ,python-psycopg2)
+ ;; For developing
+ ("openssh" ,openssh)
+ ("git" ,git)
+ ("rsync" ,rsync)
,@(package-propagated-inputs mediagoblin))))