2012-09-10 13:26:15 +01:00
|
|
|
{ cabal, libX11, libXext, libXinerama, libXrandr, libXrender }:
|
2008-01-16 10:35:49 +00:00
|
|
|
|
2011-09-05 20:24:01 +01:00
|
|
|
cabal.mkDerivation (self: {
|
2008-01-16 10:35:49 +00:00
|
|
|
pname = "X11";
|
2012-09-13 13:44:14 +01:00
|
|
|
version = "1.6.0.2";
|
|
|
|
sha256 = "0z1g93k2zbkb9is2zy6pfwp13bv11cvs30b9cz253wjv2liphshw";
|
2012-04-01 20:51:53 +01:00
|
|
|
extraLibraries = [
|
|
|
|
libX11 libXext libXinerama libXrandr libXrender
|
|
|
|
];
|
2008-01-16 10:35:49 +00:00
|
|
|
meta = {
|
2011-12-05 15:59:38 +00:00
|
|
|
homepage = "https://github.com/haskell-pkg-janitors/X11";
|
2011-08-15 12:27:02 +01:00
|
|
|
description = "A binding to the X11 graphics library";
|
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
2012-03-24 10:21:28 +00:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2008-01-16 10:35:49 +00:00
|
|
|
};
|
|
|
|
})
|