nixpkgs/pkgs/development/libraries/haskell/X11/default.nix
Peter Simons 3b2254a3af Remove myself from the meta.maintainer field of most Haskell packages.
There is no point in receiving hundreds of e-mails; I cannot read them anyway.
2013-05-11 00:36:59 +02:00

21 lines
610 B
Nix

{ cabal, dataDefault, libX11, libXext, libXinerama, libXrandr
, libXrender
}:
cabal.mkDerivation (self: {
pname = "X11";
version = "1.6.1.1";
sha256 = "1bkfnxcmf8qia0l3x5n3j4f1zakjwnlq0mhdnbpp6v3q2g37brbw";
buildDepends = [ dataDefault ];
extraLibraries = [
libX11 libXext libXinerama libXrandr libXrender
];
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 ];
};
})