2008-01-22 17:26:57 +01:00
|
|
|
{cabal, libX11, xineramaSupport ? true, libXinerama ? null, libXext ? null}:
|
2008-01-16 11:35:49 +01:00
|
|
|
|
|
|
|
assert xineramaSupport -> (libXinerama != null && libXext != null);
|
|
|
|
|
2008-01-22 17:26:57 +01:00
|
|
|
cabal.mkDerivation (self : {
|
2008-01-16 11:35:49 +01:00
|
|
|
pname = "X11";
|
|
|
|
version = "1.4.1";
|
2008-01-22 17:26:57 +01:00
|
|
|
sha256 = "e51038541415686f0e278ccdbc0b2373cd11f212de99023b7b8f8e776aa09f79";
|
|
|
|
propagatedBuildInputs = [libX11] ++ (if xineramaSupport then [libXinerama libXext] else []);
|
2008-01-16 11:35:49 +01:00
|
|
|
meta = {
|
|
|
|
description = "A Haskell binding to the X11 graphics library";
|
|
|
|
};
|
|
|
|
})
|