diff options
author | David Thompson <dthompson2@worcester.edu> | 2015-03-17 11:35:51 -0400 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2015-03-17 11:35:51 -0400 |
commit | 48fe4e0d5ccdd52f4688811d28e54dd5fc2abdbd (patch) | |
tree | eba988983915e866eecc0723bd0d9252b0c278f2 | |
parent | 2ba2c062a576f0c515ef5993ddd71a1c9a1ee5c5 (diff) |
Fix package.scm, again.
-rw-r--r-- | package.scm | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/package.scm b/package.scm index 0843b96..a564b30 100644 --- a/package.scm +++ b/package.scm @@ -33,6 +33,15 @@ (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") + (files '("lib"))))))) + (package (name "sly") (version "0.0") @@ -53,8 +62,4 @@ 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+) - (native-search-paths - (list (search-path-specification - (variable "LTDL_LIBRARY_PATH") - (files '("lib")))))) + (license gpl3+)) |