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