2011-08-10 02:35:08 +02:00
|
|
|
{ cabal, alex, happy }:
|
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-03-12 18:28:15 +01:00
|
|
|
version = "0.12.0";
|
|
|
|
sha256 = "1czlmyr9zhzc0h1j0z3chv06ma77cibq2yc6h1slfphb1lkv66a8";
|
2011-08-10 02:35:08 +02:00
|
|
|
isLibrary = false;
|
|
|
|
isExecutable = true;
|
|
|
|
buildTools = [ alex happy ];
|
2010-07-22 20:04:39 +02:00
|
|
|
meta = {
|
2011-08-10 02:35:08 +02:00
|
|
|
homepage = "http://www.haskell.org/gtk2hs/";
|
|
|
|
description = "Tools to build the Gtk2Hs suite of User Interface libraries.";
|
|
|
|
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
|
|
|
};
|
|
|
|
})
|