2012-02-16 15:05:41 +01:00
|
|
|
{ cabal, fontconfig, freetype, libXft, pkgconfig, utf8String, X11
|
2011-08-26 12:29:06 +02:00
|
|
|
}:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
2010-02-21 16:45:13 +01:00
|
|
|
pname = "X11-xft";
|
2011-10-02 22:27:25 +02:00
|
|
|
version = "0.3.1";
|
|
|
|
sha256 = "1lgqb0s2qfwwgbvwxhjbi23rbwamzdi0l0slfr20c3jpcbp3zfjf";
|
2012-02-16 15:05:41 +01:00
|
|
|
buildDepends = [ utf8String X11 ];
|
2011-08-26 12:29:06 +02:00
|
|
|
extraLibraries = [ fontconfig freetype pkgconfig ];
|
|
|
|
pkgconfigDepends = [ libXft ];
|
|
|
|
configureFlags = "--extra-include-dirs=${freetype}/include/freetype2";
|
2010-02-21 16:45:13 +01:00
|
|
|
meta = {
|
2011-08-15 13:27:02 +02:00
|
|
|
description = "Bindings to the Xft, X Free Type interface library, and some Xrender parts";
|
|
|
|
license = "LGPL";
|
|
|
|
platforms = self.ghc.meta.platforms;
|
2012-03-24 11:21:28 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2010-02-21 16:45:13 +01:00
|
|
|
};
|
|
|
|
})
|