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