2012-02-16 14:05:41 +00:00
|
|
|
{ cabal, binary, ConfigFile, filepath, gtk, mtl, random, zlib }:
|
2009-08-13 14:23:01 +01:00
|
|
|
|
2011-09-19 17:38:37 +01:00
|
|
|
cabal.mkDerivation (self: {
|
2009-08-13 14:23:01 +01:00
|
|
|
pname = "LambdaHack";
|
2012-11-26 14:16:19 +00:00
|
|
|
version = "0.2.6";
|
|
|
|
sha256 = "03adjwzbql1k1ky05vivry7waa8p41ha3lsnv9j9mdgpwqldypwd";
|
2012-02-10 11:34:26 +00:00
|
|
|
isLibrary = true;
|
2011-09-19 17:38:37 +01:00
|
|
|
isExecutable = true;
|
2012-02-16 14:05:41 +00:00
|
|
|
buildDepends = [ binary ConfigFile filepath gtk mtl random zlib ];
|
2009-08-13 14:23:01 +01:00
|
|
|
meta = {
|
2011-09-19 17:38:37 +01:00
|
|
|
homepage = "http://github.com/kosmikus/LambdaHack";
|
2012-11-26 14:16:19 +00:00
|
|
|
description = "A roguelike game engine in early and active development";
|
2011-08-15 12:27:02 +01:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
2012-03-24 10:21:28 +00:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2009-08-13 14:23:01 +01:00
|
|
|
};
|
2011-08-15 12:27:02 +01:00
|
|
|
})
|