b5c67150cf
- blaze-html: updated to version 0.4.3.4 - gloss: updated to version 1.7.3.1 - hashtables: updated to version 1.0.1.4 - repa: updated to version 3.1.2.1 - skein: updated to version 0.1.0.6 svn path=/nixpkgs/trunk/; revision=33859
16 lines
490 B
Nix
16 lines
490 B
Nix
{ cabal, bmp, GLUT, OpenGL }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "gloss";
|
|
version = "1.7.3.1";
|
|
sha256 = "0vylil8jsj7mb14dijrx2ylmsgs1ma3rh2nmiaakr5cmpp4xshf0";
|
|
buildDepends = [ bmp GLUT OpenGL ];
|
|
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 ];
|
|
};
|
|
})
|