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-22 02:34:55 -07:00
|
|
|
version = "0.90.1.0";
|
|
|
|
sha256 = "06r8z4css7md35rcbi805407dcabcrb1knif9f7445aphwzgadr0";
|
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 ];
|
2014-03-22 05:05:35 -07:00
|
|
|
preConfigure = "find . -type f -exec touch {} +";
|
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
|
|
|
})
|