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-04-03 08:31:11 +02:00
|
|
|
version = "0.12.3";
|
|
|
|
sha256 = "1129p2b0hvmin7zpq43ik670v2c63jv704bnmnh3cr0bw06qrrbi";
|
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
|
|
|
};
|
|
|
|
})
|