Added HGL.

svn path=/nixpkgs/trunk/; revision=16715
This commit is contained in:
Andres Löh 2009-08-14 08:02:57 +00:00
parent fcab7941bb
commit 0e14f884d3
2 changed files with 17 additions and 0 deletions

View File

@ -0,0 +1,13 @@
{cabal, X11}:
cabal.mkDerivation (self : {
pname = "HGL";
version = "3.2.0.0";
sha256 = "fa7cb1981f6e5a89b35e0fc2593c0945175a0d97fc3bc356cc8724fa1c881e86";
propagatedBuildInputs = [X11];
configureFlags = ''--constraint=base<4'';
meta = {
description = "A simple graphics library based on X11 or Win32";
};
})

View File

@ -217,6 +217,10 @@ rec {
inherit (pkgs) sqlite;
};
HGL = import ../development/libraries/haskell/HGL {
inherit cabal X11;
};
highlightingKate = import ../development/libraries/haskell/highlighting-kate {
inherit cabal parsec pcreLight xhtml;
};