25fe5d43fe
- MemoTrie: updated to version 0.4.11 - X11: updated to version 1.6.0 - derive: updated to version 2.5.8 - gloss: updated to version 1.7.1.1 - haskell-src-exts: updated to version 1.13.0 - haskell-src-meta: updated to version 0.5.1.2 - hlint: updated to version 1.8.28 svn path=/nixpkgs/trunk/; revision=33528
16 lines
490 B
Nix
16 lines
490 B
Nix
{ cabal, bmp, GLUT, OpenGL }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "gloss";
|
|
version = "1.7.1.1";
|
|
sha256 = "0fmmcmmdcvc5vj33bm9xzzb2jpnnb7r89ghdqwgg2c5gxjqbcfbd";
|
|
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 ];
|
|
};
|
|
})
|