2011-10-24 17:36:45 +02:00
|
|
|
{ cabal, bmp, GLUT, OpenGL }:
|
2011-09-15 07:03:31 +02:00
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "gloss";
|
2011-11-25 14:44:44 +01:00
|
|
|
version = "1.5.2.1";
|
|
|
|
sha256 = "1mwk9gnkbjr76f9g79ixxlwzpsvmhflp5c8a0584fyypjg2r33n3";
|
2011-10-24 17:36:45 +02: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;
|
|
|
|
maintainers = [
|
|
|
|
self.stdenv.lib.maintainers.andres
|
|
|
|
self.stdenv.lib.maintainers.simons
|
|
|
|
];
|
|
|
|
};
|
|
|
|
})
|