2011-09-12 18:45:57 +02:00
|
|
|
{ cabal, alex, 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";
|
2011-09-12 18:45:57 +02:00
|
|
|
version = "0.12.1";
|
|
|
|
sha256 = "003d48q8q6ji4axa69bh0sp95fic19cgw3hwigsjbl46qgh6n9gl";
|
2011-08-10 02:35:08 +02:00
|
|
|
isLibrary = false;
|
|
|
|
isExecutable = true;
|
2011-09-12 18:45:57 +02:00
|
|
|
buildDepends = [ 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;
|
|
|
|
maintainers = [
|
|
|
|
self.stdenv.lib.maintainers.andres
|
|
|
|
self.stdenv.lib.maintainers.simons
|
|
|
|
];
|
2010-07-22 20:04:39 +02:00
|
|
|
};
|
|
|
|
})
|