2012-02-16 06:05:41 -08:00
|
|
|
{ cabal, stm, wxcore }:
|
2009-05-04 06:32:59 -07:00
|
|
|
|
2011-08-13 16:38:23 -07:00
|
|
|
cabal.mkDerivation (self: {
|
2009-05-04 06:32:59 -07:00
|
|
|
pname = "wx";
|
2014-03-22 02:34:52 -07:00
|
|
|
version = "0.90.1.0";
|
|
|
|
sha256 = "1669mrd73c3v7c4yc0zgyqsnfgzb7561v1wd168y06d0db1nlkn9";
|
2012-02-16 06:05:41 -08:00
|
|
|
buildDepends = [ stm wxcore ];
|
2014-03-22 05:05:35 -07:00
|
|
|
preConfigure = "find . -type f -exec touch {} +";
|
2009-05-04 06:32:59 -07:00
|
|
|
meta = {
|
2011-08-07 15:16:26 -07:00
|
|
|
homepage = "http://haskell.org/haskellwiki/WxHaskell";
|
2009-05-04 06:32:59 -07:00
|
|
|
description = "wxHaskell";
|
2012-01-13 02:32:06 -08:00
|
|
|
license = "unknown";
|
2011-08-13 16:38:23 -07:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-05-10 15:36:36 -07:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2009-05-04 06:32:59 -07:00
|
|
|
};
|
2011-03-28 08:04:00 -07:00
|
|
|
})
|