2011-08-15 00:52:05 +02:00
|
|
|
{ cabal, extensibleExceptions, ghcMtl, ghcPaths, 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";
|
2011-11-06 19:36:30 +01:00
|
|
|
version = "0.3.3.3";
|
|
|
|
sha256 = "0i7d7c2786c13npbb5np3gaidsq4kkajvm3fn2gx8djrhhlrqw5l";
|
2011-08-10 01:00:20 +02:00
|
|
|
buildDepends = [
|
2011-08-15 00:52:05 +02:00
|
|
|
extensibleExceptions ghcMtl ghcPaths haskellSrc MonadCatchIOMtl mtl
|
2011-08-12 02:18:56 +02:00
|
|
|
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;
|
2011-08-10 01:00:20 +02:00
|
|
|
maintainers = [
|
|
|
|
self.stdenv.lib.maintainers.andres
|
|
|
|
self.stdenv.lib.maintainers.simons
|
|
|
|
];
|
2010-07-16 12:39:02 +02:00
|
|
|
};
|
2011-03-28 17:04:00 +02:00
|
|
|
})
|