2014-03-22 02:34:55 -07:00
|
|
|
{ cabal, filepath, parsec, strict, time }:
|
2011-03-12 09:28:15 -08:00
|
|
|
|
2011-08-13 16:38:23 -07:00
|
|
|
cabal.mkDerivation (self: {
|
2011-03-12 09:28:15 -08:00
|
|
|
pname = "wxdirect";
|
2014-03-26 01:51:07 -07:00
|
|
|
version = "0.90.1.1";
|
|
|
|
sha256 = "0ibhxl4n66w094jhca01z2vmibgz0nn7qddgxzqngvajzjvnha98";
|
2011-08-13 16:38:23 -07:00
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
2014-03-22 02:34:55 -07:00
|
|
|
buildDepends = [ filepath parsec strict time ];
|
2011-03-12 09:28:15 -08:00
|
|
|
meta = {
|
2011-08-07 15:16:18 -07:00
|
|
|
homepage = "http://haskell.org/haskellwiki/WxHaskell";
|
2011-03-12 09:28:15 -08:00
|
|
|
description = "helper tool for building wxHaskell";
|
2011-08-07 15:16:18 -07:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
2011-08-09 02:54:50 -07:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-05-10 15:36:36 -07:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-03-12 09:28:15 -08:00
|
|
|
};
|
2011-03-28 08:04:00 -07:00
|
|
|
})
|