3e10ee5c92
* haskell-dataenc: updated to version 0.14.0.2 * haskell-fclabels: updated to version 1.0.1 svn path=/nixpkgs/trunk/; revision=28574
24 lines
693 B
Nix
24 lines
693 B
Nix
{ cabal, extensibleExceptions, ghcMtl, ghcPaths, haskellSrc
|
|
, MonadCatchIOMtl, mtl, random, utf8String
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "hint";
|
|
version = "0.3.3.2";
|
|
sha256 = "1qm74hjz8cxypvavcw7s094zg9ic3r1ll2lj3y159ipc79cw2sn1";
|
|
buildDepends = [
|
|
extensibleExceptions ghcMtl ghcPaths haskellSrc MonadCatchIOMtl mtl
|
|
random utf8String
|
|
];
|
|
meta = {
|
|
homepage = "http://projects.haskell.org/hint";
|
|
description = "Runtime Haskell interpreter (GHC API wrapper)";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [
|
|
self.stdenv.lib.maintainers.andres
|
|
self.stdenv.lib.maintainers.simons
|
|
];
|
|
};
|
|
})
|