2012-02-16 15:05:41 +01:00
|
|
|
{ cabal, bmp, GLUT, OpenGL }:
|
2011-09-15 07:03:31 +02:00
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "gloss";
|
2012-03-09 11:01:19 +01:00
|
|
|
version = "1.6.2.1";
|
|
|
|
sha256 = "0lczr3lm0i19cznkyxx6dhrlg08698mq84wjn7b0im32par1qjj5";
|
2012-02-16 15:05:41 +01:00
|
|
|
buildDepends = [ bmp GLUT OpenGL ];
|
2011-09-15 07:03:31 +02:00
|
|
|
meta = {
|
|
|
|
homepage = "http://gloss.ouroborus.net";
|
|
|
|
description = "Painless 2D vector graphics, animations and simulations";
|
|
|
|
license = self.stdenv.lib.licenses.mit;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
2012-03-24 11:21:28 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-09-15 07:03:31 +02:00
|
|
|
};
|
|
|
|
})
|