Added the hint Haskell package plus dependencies.

svn path=/nixpkgs/trunk/; revision=22617
This commit is contained in:
Andres Löh
2010-07-16 10:39:02 +00:00
parent 9db8a17ce3
commit bcc7c49488
4 changed files with 54 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
{cabal, mtl, extensibleExceptions} :
cabal.mkDerivation (self : {
pname = "MonadCatchIO-mtl";
version = "0.3.0.1";
sha256 = "56113319439a10e338b2e3169e1df575024fbaf97827511f4856e46efbac9a07";
propagatedBuildInputs = [mtl extensibleExceptions];
meta = {
description = "Monad-transformer version of the Control.Exception module";
};
})

View File

@@ -0,0 +1,12 @@
{cabal, mtl, MonadCatchIOMtl} :
cabal.mkDerivation (self : {
pname = "ghc-mtl";
version = "1.0.1.0";
sha256 = "5284e0ecf99511e6263503412faf6fa809dc577c009fde63203d46405eb1b191";
propagatedBuildInputs = [mtl MonadCatchIOMtl];
meta = {
description = "An mtl compatible version of the Ghc-Api monads and monad-transformers";
};
})

View File

@@ -0,0 +1,16 @@
{cabal, extensibleExceptions, filepath, ghcMtl,
ghcPaths, haskellSrc, MonadCatchIOMtl, mtl, utf8String} :
cabal.mkDerivation (self : {
pname = "hint";
version = "0.3.2.3";
sha256 = "1cc01037cfd32eb1a299ce625487411a97ce70178778d7bbd1d5fcef7d3d40c4";
propagatedBuildInputs = [
extensibleExceptions filepath ghcMtl ghcPaths haskellSrc
MonadCatchIOMtl mtl utf8String
];
meta = {
description = "An mtl compatible version of the Ghc-Api monads and monad-transformers";
};
})