nixpkgs/pkgs/development/guile-modules/guile-ncurses/default.nix

34 lines
978 B
Nix
Raw Normal View History

2013-11-29 02:40:35 +00:00
{ fetchurl, stdenv, guile, ncurses, libffi }:
stdenv.mkDerivation rec {
2016-05-15 11:16:45 +00:00
name = "guile-ncurses-1.7";
src = fetchurl {
url = "mirror://gnu/guile-ncurses/${name}.tar.gz";
2016-05-15 11:16:45 +00:00
sha256 = "153vv75gb7l62sp3666rc97i63rnaqbx2rjar7d9b5w81fhwv4r5";
};
2013-11-29 02:40:35 +00:00
buildInputs = [ guile ncurses libffi ];
preConfigure =
'' configureFlags="$configureFlags --with-guilesitedir=$out/share/guile/site" '';
doCheck = false; # XXX: 1 of 65 tests failed
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 = stdenv.lib.licenses.lgpl3Plus;
2015-01-13 21:33:24 +00:00
maintainers = [ ];
platforms = stdenv.lib.platforms.gnu; # arbitrary choice
};
}