nixpkgs/pkgs/development/libraries/haskell/gtk/default.nix
Peter Simons bc7c4c1951 Updated Haskell packages.
- base16-bytestring: updated to version 0.1.1.5
 - base64-bytestring: updated to version 0.1.1.3
 - bloomfilter: updated to version 1.2.6.10
 - cryptocipher: updated to version 0.3.5
 - gtk: updated to version 0.12.3.1
 - http-conduit: updated to version 1.4.1.9
 - snap-core: updated to version 0.9.0
 - snap-server: updated to version 0.9.0
 - stringsearch: updated to version 0.3.6.3
 - text: updated to version 0.11.2.2
 - void: updated to version 0.5.6

svn path=/nixpkgs/trunk/; revision=34542
2012-06-18 09:52:42 +00:00

21 lines
661 B
Nix

{ cabal, cairo, glib, gtk, gtk2hsBuildtools, libc, mtl, pango
, pkgconfig
}:
cabal.mkDerivation (self: {
pname = "gtk";
version = "0.12.3.1";
sha256 = "0v9sh07lpvih2gk4ivy0jx2slw7rpvbf75xp20plzgzmay1y978s";
buildDepends = [ cairo glib mtl pango ];
buildTools = [ gtk2hsBuildtools ];
extraLibraries = [ libc pkgconfig ];
pkgconfigDepends = [ glib gtk ];
meta = {
homepage = "http://projects.haskell.org/gtk2hs/";
description = "Binding to the Gtk+ graphical user interface library";
license = self.stdenv.lib.licenses.lgpl21;
platforms = self.ghc.meta.platforms;
maintainers = [ self.stdenv.lib.maintainers.andres ];
};
})