2012-02-16 14:05:41 +00:00
|
|
|
{ cabal, extensibleExceptions, filepath, ghcMtl, ghcPaths
|
2012-02-14 17:00:37 +00:00
|
|
|
, haskellSrc, MonadCatchIOMtl, mtl, random, utf8String
|
2011-08-10 00:00:20 +01:00
|
|
|
}:
|
2010-07-16 11:39:02 +01:00
|
|
|
|
2011-08-10 00:00:20 +01:00
|
|
|
cabal.mkDerivation (self: {
|
2010-07-16 11:39:02 +01:00
|
|
|
pname = "hint";
|
2012-10-11 09:18:49 +01:00
|
|
|
version = "0.3.3.5";
|
|
|
|
sha256 = "09pd4b105c2ikf4ap96fz8091qra7hypq3k3ik0kay3bb532hmlq";
|
2011-08-10 00:00:20 +01:00
|
|
|
buildDepends = [
|
2012-02-16 14:05:41 +00:00
|
|
|
extensibleExceptions filepath ghcMtl ghcPaths haskellSrc
|
2012-02-14 17:00:37 +00:00
|
|
|
MonadCatchIOMtl mtl random utf8String
|
2010-07-16 11:39:02 +01:00
|
|
|
];
|
|
|
|
meta = {
|
2011-11-06 18:36:30 +00:00
|
|
|
homepage = "http://darcsden.com/jcpetruzza/hint";
|
2011-08-07 23:01:49 +01:00
|
|
|
description = "Runtime Haskell interpreter (GHC API wrapper)";
|
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
2011-08-09 10:54:50 +01:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2012-03-24 10:21:28 +00:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2010-07-16 11:39:02 +01:00
|
|
|
};
|
2011-03-28 16:04:00 +01:00
|
|
|
})
|