nixpkgs/pkgs/development/libraries/haskell/haskeline/default.nix
Peter Simons 9a7839daaf haskell-haskeline: updated to version 0.6.4.2
svn path=/nixpkgs/trunk/; revision=28549
2011-08-13 22:06:18 +00:00

19 lines
616 B
Nix

{ cabal, extensibleExceptions, mtl, terminfo, utf8String }:
cabal.mkDerivation (self: {
pname = "haskeline";
version = "0.6.4.2";
sha256 = "0za3n0kyfnya9lc6p07702rn393ghhsb3b08i1lpxz6587fbdzjb";
buildDepends = [ extensibleExceptions mtl terminfo utf8String ];
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
self.stdenv.lib.maintainers.simons
];
};
})