16 lines
510 B
Nix
16 lines
510 B
Nix
{ cabal, bmp, GLUT, OpenGL }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "gloss";
|
|
version = "1.7.6.6";
|
|
sha256 = "1by8zr1194mjnnia0ackhd48yqxh79k752c5jwxx6nsk1diwrvl9";
|
|
buildDepends = [ bmp GLUT OpenGL ];
|
|
jailbreak = true;
|
|
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 ];
|
|
};
|
|
})
|