Curses: new package

This commit is contained in:
Mark Laws 2015-09-04 19:50:37 -07:00
parent 5a3a42d1f7
commit 92b925d811

View file

@ -2336,6 +2336,20 @@ let self = _self // overrides; _self = with self; {
buildInputs = [ Clone ];
};
Curses = buildPerlPackage {
name = "Curses-1.32";
src = fetchurl {
url = mirror://cpan/authors/id/G/GI/GIRAFFED/Curses-1.32.tgz;
sha256 = "0l569g8saw20ka5z4h17xpn0mcwfxg3jnsg6cnbnv034g7yl9fjx";
};
propagatedBuildInputs = [ pkgs.ncurses ];
NIX_CFLAGS_LINK = "-lncurses";
meta = {
description = "Perl bindings to ncurses";
license = stdenv.lib.licenses.artistic1;
};
};
CwdGuard = buildPerlModule rec {
name = "Cwd-Guard-0.04";
src = fetchurl {