2012-06-03 20:52:43 +02:00
|
|
|
{ cabal, cabalMacosx, reactiveBanana, wx, wxcore }:
|
2012-05-17 12:16:14 +02:00
|
|
|
|
2012-06-03 20:52:43 +02:00
|
|
|
cabal.mkDerivation (self: {
|
2012-05-17 12:16:14 +02:00
|
|
|
pname = "reactive-banana-wx";
|
2012-06-28 14:45:11 +02:00
|
|
|
version = "0.6.0.1";
|
|
|
|
sha256 = "1i674jy8fwirq267vwwdyqa4whxfx3r689rxjbrh9hyicqwcrl24";
|
2012-05-17 12:16:14 +02:00
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
2012-06-03 20:52:43 +02:00
|
|
|
buildDepends = [ cabalMacosx reactiveBanana wx wxcore ];
|
|
|
|
configureFlags = "-f-buildExamples";
|
2012-05-17 12:16:14 +02:00
|
|
|
meta = {
|
|
|
|
homepage = "http://haskell.org/haskellwiki/Reactive-banana";
|
|
|
|
description = "Examples for the reactive-banana library, using wxHaskell";
|
2012-06-03 20:52:43 +02:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
2012-05-17 12:16:14 +02:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2012-06-03 20:52:43 +02:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2012-05-17 12:16:14 +02:00
|
|
|
};
|
|
|
|
})
|