25fe5d43fe
- MemoTrie: updated to version 0.4.11 - X11: updated to version 1.6.0 - derive: updated to version 2.5.8 - gloss: updated to version 1.7.1.1 - haskell-src-exts: updated to version 1.13.0 - haskell-src-meta: updated to version 0.5.1.2 - hlint: updated to version 1.8.28 svn path=/nixpkgs/trunk/; revision=33528
17 lines
543 B
Nix
17 lines
543 B
Nix
{ cabal, libX11, libXext, libXinerama, syb }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "X11";
|
|
version = "1.5.0.1";
|
|
sha256 = "0s8k3lhvlks6i1mwfnm5fimfd2f0sjw9k2p67is3x564kih7mh19";
|
|
buildDepends = [ syb ];
|
|
extraLibraries = [ libX11 libXext libXinerama ];
|
|
meta = {
|
|
homepage = "https://github.com/haskell-pkg-janitors/X11";
|
|
description = "A binding to the X11 graphics library";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|