2012-04-17 14:56:34 +01:00
|
|
|
{ cabal, filepath, libX11, mesa, parsec, stm, time, wxc, wxdirect
|
|
|
|
, wxGTK
|
2012-02-14 17:00:37 +00:00
|
|
|
}:
|
2011-08-07 23:16:22 +01:00
|
|
|
|
2011-08-23 11:35:49 +01:00
|
|
|
cabal.mkDerivation (self: {
|
2009-05-04 14:32:59 +01:00
|
|
|
pname = "wxcore";
|
2012-07-05 08:58:10 +01:00
|
|
|
version = "0.90.0.3";
|
|
|
|
sha256 = "0d79hr6cz9zj3w57h6630nfnsmfq1w73gz04jjmlhwh8ih557imw";
|
2012-04-17 14:56:34 +01:00
|
|
|
buildDepends = [ filepath parsec stm time wxc wxdirect ];
|
2011-08-23 12:00:05 +01:00
|
|
|
extraLibraries = [ libX11 mesa wxGTK ];
|
2013-05-30 11:35:18 +01:00
|
|
|
patchPhase = ''
|
|
|
|
sed -i -e 's|containers >=.*|containers|' wxcore.cabal
|
|
|
|
'';
|
2009-05-04 14:32:59 +01:00
|
|
|
meta = {
|
2011-08-07 23:16:22 +01:00
|
|
|
homepage = "http://haskell.org/haskellwiki/WxHaskell";
|
2009-05-04 14:32:59 +01:00
|
|
|
description = "wxHaskell core";
|
2012-01-13 10:32:08 +00:00
|
|
|
license = "unknown";
|
2011-08-09 10:54:50 +01:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-05-10 23:36:36 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2009-05-04 14:32:59 +01:00
|
|
|
};
|
2011-03-28 16:04:00 +01:00
|
|
|
})
|