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