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