2012-02-16 15:05:41 +01:00
|
|
|
{ cabal, glib, gtk2hsBuildtools, libc, pkgconfig }:
|
2010-10-05 19:30:17 +02:00
|
|
|
|
2011-08-15 13:27:02 +02:00
|
|
|
cabal.mkDerivation (self: {
|
2010-10-05 19:30:17 +02:00
|
|
|
pname = "glib";
|
2012-11-12 12:34:28 +01:00
|
|
|
version = "0.12.4";
|
|
|
|
sha256 = "0s92phy1xlgjzqc7y5plviipb98m13h5lj4n9g6lbv4i106z97ax";
|
2011-08-23 12:35:49 +02:00
|
|
|
buildTools = [ gtk2hsBuildtools ];
|
2011-09-12 18:45:47 +02:00
|
|
|
extraLibraries = [ libc pkgconfig ];
|
2011-08-23 12:35:49 +02:00
|
|
|
pkgconfigDepends = [ glib ];
|
2010-10-05 19:30:17 +02:00
|
|
|
meta = {
|
2011-09-12 18:45:47 +02:00
|
|
|
homepage = "http://projects.haskell.org/gtk2hs/";
|
2010-10-05 19:30:17 +02:00
|
|
|
description = "Binding to the GLIB library for Gtk2Hs";
|
2011-08-15 13:27:02 +02:00
|
|
|
license = self.stdenv.lib.licenses.lgpl21;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-05-11 00:36:36 +02:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2010-10-05 19:30:17 +02:00
|
|
|
};
|
|
|
|
})
|