2012-02-16 14:05:41 +00:00
|
|
|
{ cabal, alex, filepath, happy, random }:
|
2010-07-22 19:04:39 +01:00
|
|
|
|
2011-08-10 01:35:08 +01:00
|
|
|
cabal.mkDerivation (self: {
|
2010-07-22 19:04:39 +01:00
|
|
|
pname = "gtk2hs-buildtools";
|
2012-05-28 11:23:20 +01:00
|
|
|
version = "0.12.3.1";
|
|
|
|
sha256 = "0a5lay1zy1pi6inaqjvhn8v0by2z5dpy3dssqsxwbq2hkfxizzy6";
|
2011-08-10 01:35:08 +01:00
|
|
|
isLibrary = false;
|
|
|
|
isExecutable = true;
|
2012-02-16 14:05:41 +00:00
|
|
|
buildDepends = [ filepath random ];
|
2011-08-10 01:35:08 +01:00
|
|
|
buildTools = [ alex happy ];
|
2010-07-22 19:04:39 +01:00
|
|
|
meta = {
|
2011-09-12 17:45:57 +01:00
|
|
|
homepage = "http://projects.haskell.org/gtk2hs/";
|
2011-08-11 14:03:51 +01:00
|
|
|
description = "Tools to build the Gtk2Hs suite of User Interface libraries";
|
2011-08-10 01:35:08 +01:00
|
|
|
license = self.stdenv.lib.licenses.gpl2;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
2012-03-24 10:21:28 +00:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2010-07-22 19:04:39 +01:00
|
|
|
};
|
|
|
|
})
|