GNU Guile-Ncurses 1.2.

svn path=/nixpkgs/trunk/; revision=25646
This commit is contained in:
Ludovic Courtès 2011-01-20 22:06:35 +00:00
parent 038e045bc7
commit 72a6bbc02c
2 changed files with 36 additions and 0 deletions

View File

@ -0,0 +1,34 @@
{ fetchurl, stdenv, guile, ncurses }:
stdenv.mkDerivation rec {
name = "guile-ncurses-1.2";
src = fetchurl {
url = "mirror://gnu/guile-ncurses/${name}.tar.gz";
sha256 = "038jfi14wdcpq87bpyff2b5mb9mr0garsa3dypwwd29ah6h1x00i";
};
buildInputs = [ guile ncurses ];
preConfigure =
'' configureFlags="$configureFlags --with-guilesitedir=$out/share/guile/site" '';
preCheck = '' export TERM=xterm '';
doCheck = false; # FIXME: Hard to test non-interactively.
meta = {
description = "GNU Guile-Ncurses, Scheme interface to the NCurses libraries";
longDescription =
'' GNU Guile-Ncurses is a library for the Guile Scheme interpreter that
provides functions for creating text user interfaces. The text user
interface functionality is built on the ncurses libraries: curses,
form, panel, and menu.
'';
license = "LGPLv3+";
maintainers = [ stdenv.lib.maintainers.ludo ];
platforms = stdenv.lib.platforms.gnu; # arbitrary choice
};
}

View File

@ -2417,6 +2417,8 @@ let
guile_lib = callPackage ../development/guile-modules/guile-lib { };
guile_ncurses = callPackage ../development/guile-modules/guile-ncurses { };
windowssdk = (
import ../development/misc/windows-sdk {
inherit fetchurl stdenv cabextract;