summaryrefslogtreecommitdiff
path: root/package.scm
diff options
context:
space:
mode:
authorDavid Thompson <dthompson2@worcester.edu>2014-11-08 22:41:14 -0500
committerDavid Thompson <dthompson2@worcester.edu>2014-11-08 22:41:14 -0500
commitea451009ed97079bfe6aac9035ef1a0b56313c86 (patch)
treed9acccf9c3c94dd134e09c3c1c58419f636a1c3a /package.scm
parentdbd9a0c81bebbd424a1d5635f72b48271c4e6c76 (diff)
Add autoconf and automake to guix environment.
* package.scm: Add autoconf and automake as inputs.
Diffstat (limited to 'package.scm')
-rw-r--r--package.scm10
1 files changed, 6 insertions, 4 deletions
diff --git a/package.scm b/package.scm
index 7eae3a1..18097e8 100644
--- a/package.scm
+++ b/package.scm
@@ -25,6 +25,7 @@
(guix licenses)
(guix build-system gnu)
(gnu packages)
+ (gnu packages autotools)
(gnu packages guile)
(gnu packages gl)
(gnu packages pkg-config)
@@ -44,12 +45,13 @@
(package
(name "sly")
(version "0.0")
- (source ".")
+ (source #f)
(build-system gnu-build-system)
- (native-inputs
- `(("pkg-config" ,pkg-config)))
(inputs
- `(("guile" ,guile-2.0)
+ `(("pkg-config" ,pkg-config)
+ ("autoconf" ,autoconf)
+ ("automake" ,automake)
+ ("guile" ,guile-2.0)
("guile-sdl" ,guile-sdl)
("guile-opengl" ,guile-opengl)
("gsl" ,gsl)