diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2016-07-18 22:14:37 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2016-07-20 22:19:34 +0200 |
commit | cdf8f39195c87559cfebddad398b0f70b610e2c1 (patch) | |
tree | b3d45ab0da8cbb150ff62a76b269afbcd3007536 | |
parent | 19d311b4f2e2dc2a5e97bec8d48c23abe1896851 (diff) | |
download | patches-cdf8f39195c87559cfebddad398b0f70b610e2c1.tar patches-cdf8f39195c87559cfebddad398b0f70b610e2c1.tar.gz |
gnu: Add allegro-5.0.
* gnu/packages/game-development.scm (allegro-5.0): New variable.
-rw-r--r-- | gnu/packages/game-development.scm | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/gnu/packages/game-development.scm b/gnu/packages/game-development.scm index 03623aaa89..7067a714e7 100644 --- a/gnu/packages/game-development.scm +++ b/gnu/packages/game-development.scm @@ -383,6 +383,18 @@ etc.") (home-page "http://liballeg.org") (license license:bsd-3))) +(define-public allegro-5.0 + (package (inherit allegro) + (name "allegro") + (version "5.0.11") + (source (origin + (method url-fetch) + (uri (string-append "http://download.gna.org/allegro/allegro/" + version "/allegro-" version ".tar.gz")) + (sha256 + (base32 + "0cd51qrh97jrr0xdmnivqgwljpmizg8pixsgvc4blqqlaz4i9zj9")))))) + (define-public aseprite (package (name "aseprite") |