nixpkgs/pkgs/development/libraries/haskell/terminfo/default.nix
Peter Simons 94e09b0060 haskell-terminfo: updated to version 0.3.2
svn path=/nixpkgs/trunk/; revision=28338
2011-08-07 22:02:28 +00:00

16 lines
534 B
Nix

{cabal, extensibleExceptions, ncurses}:
cabal.mkDerivation (self : {
pname = "terminfo";
version = "0.3.2";
sha256 = "0sfb6p6gj29wahp45plai7bygyyhhcaw6ld5xf90clkxy5pcsw1a";
propagatedBuildInputs = [extensibleExceptions ncurses];
meta = {
homepage = "http://code.haskell.org/terminfo";
description = "Haskell bindings to the terminfo library.";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.stdenv.lib.platforms.haskellPlatforms;
maintainers = [ self.stdenv.lib.maintainers.simons ];
};
})