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