nixpkgs/pkgs/development/libraries/haskell/gloss/default.nix
Peter Simons e85d655229 haskell-gloss: updated to version 1.5.0.2
svn path=/nixpkgs/trunk/; revision=30041
2011-10-26 17:37:28 +00:00

19 lines
541 B
Nix

{ cabal, bmp, GLUT, OpenGL }:
cabal.mkDerivation (self: {
pname = "gloss";
version = "1.5.0.2";
sha256 = "01fd5yl5wdw09xqslmx8h563k2v8dglc60902kia8b5h62xjr1w6";
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
self.stdenv.lib.maintainers.simons
];
};
})