development/libraries/haskell/X11-xft: New nixpkg.
svn path=/nixpkgs/trunk/; revision=20155
This commit is contained in:
parent
40985548d1
commit
618c0f040a
14
pkgs/development/libraries/haskell/X11-xft/default.nix
Normal file
14
pkgs/development/libraries/haskell/X11-xft/default.nix
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
{ ghc, cabal, X11, utf8String, pkgconfig, libXft }:
|
||||||
|
cabal.mkDerivation (self : {
|
||||||
|
pname = "X11-xft";
|
||||||
|
version = "0.3";
|
||||||
|
sha256 = "48892d0d0a90d5b47658877facabf277bf8466b7388eaf6ce163b843432a567d";
|
||||||
|
buildInputs = [ ghc pkgconfig libXft ];
|
||||||
|
propagatedBuildInputs = [ X11 utf8String ];
|
||||||
|
meta = {
|
||||||
|
homepage = http://hackage.haskell.org/package/X11-xft;
|
||||||
|
description = "Haskell bindings to the Xft and some Xrender parts";
|
||||||
|
maintainers = with self.stdenv.lib.maintainers; [ astsmtl ];
|
||||||
|
platforms = with self.stdenv.lib.platforms; linux;
|
||||||
|
};
|
||||||
|
})
|
@ -600,6 +600,12 @@ rec {
|
|||||||
xineramaSupport = true;
|
xineramaSupport = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
X11_xft = import ../development/libraries/haskell/X11-xft {
|
||||||
|
inherit ghc cabal X11 utf8String;
|
||||||
|
inherit (pkgs) pkgconfig;
|
||||||
|
inherit (pkgs.xlibs) libXft;
|
||||||
|
};
|
||||||
|
|
||||||
xhtml = import ../development/libraries/haskell/xhtml {
|
xhtml = import ../development/libraries/haskell/xhtml {
|
||||||
inherit cabal;
|
inherit cabal;
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user