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