2012-02-16 15:05:41 +01:00
|
|
|
{ cabal, extensibleExceptions, filepath, ghcMtl, ghcPaths
|
2012-02-14 18:00:37 +01:00
|
|
|
, haskellSrc, MonadCatchIOMtl, mtl, random, utf8String
|
2011-08-10 01:00:20 +02:00
|
|
|
}:
|
2010-07-16 12:39:02 +02:00
|
|
|
|
2011-08-10 01:00:20 +02:00
|
|
|
cabal.mkDerivation (self: {
|
2010-07-16 12:39:02 +02:00
|
|
|
pname = "hint";
|
2013-09-03 13:57:26 +02:00
|
|
|
version = "0.3.3.7";
|
|
|
|
sha256 = "1aba9dfkxlpmvbvllw4qnlrd300vnr0ismkn3kva1pv1cay5pifk";
|
2011-08-10 01:00:20 +02:00
|
|
|
buildDepends = [
|
2012-02-16 15:05:41 +01:00
|
|
|
extensibleExceptions filepath ghcMtl ghcPaths haskellSrc
|
2012-02-14 18:00:37 +01:00
|
|
|
MonadCatchIOMtl mtl random utf8String
|
2010-07-16 12:39:02 +02:00
|
|
|
];
|
|
|
|
meta = {
|
2011-11-06 19:36:30 +01:00
|
|
|
homepage = "http://darcsden.com/jcpetruzza/hint";
|
2011-08-08 00:01:49 +02:00
|
|
|
description = "Runtime Haskell interpreter (GHC API wrapper)";
|
|
|
|
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 ];
|
2010-07-16 12:39:02 +02:00
|
|
|
};
|
2011-03-28 17:04:00 +02:00
|
|
|
})
|