mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-10-31 22:51:22 +00:00
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;
|
||||
};
|
||||
|
||||
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 {
|
||||
inherit cabal;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user