summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Thompson <dthompson2@worcester.edu>2015-03-17 11:31:08 -0400
committerDavid Thompson <dthompson2@worcester.edu>2015-03-17 11:31:08 -0400
commit2ba2c062a576f0c515ef5993ddd71a1c9a1ee5c5 (patch)
tree8e14402b0e0b272888ebafec71188c2d1b3fc6ab
parentbfb137179b5662f897fa606022875cc6797006b3 (diff)
Update package.scm.
-rw-r--r--package.scm17
1 files changed, 6 insertions, 11 deletions
diff --git a/package.scm b/package.scm
index a5343f9..0843b96 100644
--- a/package.scm
+++ b/package.scm
@@ -33,19 +33,10 @@
(gnu packages maths)
(gnu packages image))
-;; The development environment needs a tweaked LTDL_LIBRARY_PATH for
-;; finding libfreeimage.
-(define freeimage
- (package (inherit freeimage)
- (native-search-paths
- (list (search-path-specification
- (variable "LTDL_LIBRARY_PATH")
- (directories '("lib")))))))
-
(package
(name "sly")
(version "0.0")
- (source #f)
+ (source ".")
(build-system gnu-build-system)
(inputs
`(("pkg-config" ,pkg-config)
@@ -62,4 +53,8 @@
Sly differs from most game engines in that it emphasizes functional
reactive programming and live coding.")
(home-page "https://gitorious.org/sly/sly")
- (license gpl3+))
+ (license gpl3+)
+ (native-search-paths
+ (list (search-path-specification
+ (variable "LTDL_LIBRARY_PATH")
+ (files '("lib"))))))