summaryrefslogtreecommitdiff
path: root/package.scm
diff options
context:
space:
mode:
authorDavid Thompson <dthompson2@worcester.edu>2015-01-29 19:15:27 -0500
committerDavid Thompson <dthompson2@worcester.edu>2015-01-30 07:27:13 -0500
commit4f13f9d0cefb7abedcca87a52a021356288594e5 (patch)
tree946ccc0ab915e43177edb3110fbe5bee5edfe8bf /package.scm
parent8ced57e86f518cecea4fa5c6499ad33459823b77 (diff)
Replace package.scm with env.scm.
* env.scm: New file. * package.scm: Delete. * README.md (Development): s/package/env/
Diffstat (limited to 'package.scm')
-rw-r--r--package.scm24
1 files changed, 0 insertions, 24 deletions
diff --git a/package.scm b/package.scm
deleted file mode 100644
index 94b67f7..0000000
--- a/package.scm
+++ /dev/null
@@ -1,24 +0,0 @@
-(use-modules (guix packages)
- (guix licenses)
- (guix build-system gnu)
- (gnu packages autotools)
- (gnu packages guile)
- (gnu packages package-management))
-
-(package
- (name "guix-web")
- (version "0.1")
- (source ".")
- (build-system gnu-build-system)
- (native-inputs
- `(("autoconf" ,autoconf)
- ("automake" ,automake)))
- (inputs
- `(("guile" ,guile-2.0)
- ("guile-json" ,guile-json)
- ("guix" ,guix)))
- (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.")
- (home-page "https://gitorious.org/guix-web/guix-web")
- (license agpl3+))