13a10c3e54
- authenticate: updated to version 1.2.1.1 - blaze-html: added version 0.5.0.0 (unused right now because happstack can't deal with it) - BNFC-meta: updated to version 0.3.0.2 - graphviz: patched build to succeed with transformers 0.3.x - haskeline: updated to version 0.6.4.7 - http-conduit: updated to version 1.4.1.3 - numeric-prelude: updated to version 0.3.0.2 - pandoc: updated to version 1.9.3 svn path=/nixpkgs/trunk/; revision=34087
20 lines
623 B
Nix
20 lines
623 B
Nix
{ cabal, extensibleExceptions, filepath, mtl, terminfo, utf8String
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "haskeline";
|
|
version = "0.6.4.7";
|
|
sha256 = "18ma4i2i6hx8bhbkh1d7mqzsqbfj0zc2bkv3czjyylizqwhpq6ih";
|
|
buildDepends = [
|
|
extensibleExceptions filepath mtl terminfo utf8String
|
|
];
|
|
configureFlags = "-fterminfo";
|
|
meta = {
|
|
homepage = "http://trac.haskell.org/haskeline";
|
|
description = "A command-line interface for user input, written in Haskell";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|