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-02-08 23:06:01 +00:00
|
|
|
version = "0.3.3.4";
|
|
|
|
sha256 = "0pmvhlj9m0s1wvw8ppx1wx879lwzg38bcvhy1ma1d4wnrpq3bhiy";
|
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;
|
2011-08-10 00:00:20 +01:00
|
|
|
maintainers = [
|
|
|
|
self.stdenv.lib.maintainers.andres
|
|
|
|
self.stdenv.lib.maintainers.simons
|
|
|
|
];
|
2010-07-16 11:39:02 +01:00
|
|
|
};
|
2011-03-28 16:04:00 +01:00
|
|
|
})
|