2014-03-11 11:49:23 +01:00
|
|
|
{ cabal, exceptions, extensibleExceptions, filepath, ghcMtl
|
|
|
|
, ghcPaths, HUnit, 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";
|
2014-05-15 16:08:54 +02:00
|
|
|
version = "0.4.2.0";
|
|
|
|
sha256 = "08cq9zyyry7cxc30jmsdgrnvw6v2jbxnxcwcjs3bh77rds947mmd";
|
2011-08-10 01:00:20 +02:00
|
|
|
buildDepends = [
|
2014-03-11 11:49:23 +01:00
|
|
|
exceptions extensibleExceptions filepath ghcMtl ghcPaths mtl random
|
|
|
|
utf8String
|
|
|
|
];
|
|
|
|
testDepends = [
|
|
|
|
exceptions extensibleExceptions filepath HUnit mtl
|
2010-07-16 12:39:02 +02:00
|
|
|
];
|
|
|
|
meta = {
|
2014-03-11 11:49:23 +01:00
|
|
|
homepage = "http://hub.darcs.net/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;
|
2013-05-11 00:36:36 +02:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2010-07-16 12:39:02 +02:00
|
|
|
};
|
2011-03-28 17:04:00 +02:00
|
|
|
})
|