2012-04-17 17:56:34 +04:00
|
|
|
{ cabal, filepath, libX11, mesa, parsec, stm, time, wxc, wxdirect
|
|
|
|
, wxGTK
|
2012-02-14 21:00:37 +04:00
|
|
|
}:
|
2011-08-08 02:16:22 +04:00
|
|
|
|
2011-08-23 14:35:49 +04:00
|
|
|
cabal.mkDerivation (self: {
|
2009-05-04 17:32:59 +04:00
|
|
|
pname = "wxcore";
|
2014-03-22 13:34:54 +04:00
|
|
|
version = "0.90.1.0";
|
|
|
|
sha256 = "0pyh5xc8f3rlyn66dawlijwym8nwac12qwh96hfkna0pbqg0995c";
|
2012-04-17 17:56:34 +04:00
|
|
|
buildDepends = [ filepath parsec stm time wxc wxdirect ];
|
2011-08-23 15:00:05 +04:00
|
|
|
extraLibraries = [ libX11 mesa wxGTK ];
|
2014-03-22 16:05:35 +04:00
|
|
|
preConfigure = "find . -type f -exec touch {} +";
|
2009-05-04 17:32:59 +04:00
|
|
|
meta = {
|
2011-08-08 02:16:22 +04:00
|
|
|
homepage = "http://haskell.org/haskellwiki/WxHaskell";
|
2009-05-04 17:32:59 +04:00
|
|
|
description = "wxHaskell core";
|
2012-01-13 14:32:08 +04:00
|
|
|
license = "unknown";
|
2011-08-09 13:54:50 +04:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-05-11 02:36:36 +04:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2009-05-04 17:32:59 +04:00
|
|
|
};
|
2011-03-28 19:04:00 +04:00
|
|
|
})
|