2013-11-29 02:40:35 +00:00
|
|
|
{ fetchurl, stdenv, guile, ncurses, libffi }:
|
2011-01-20 22:06:35 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2016-05-15 12:16:45 +01:00
|
|
|
name = "guile-ncurses-1.7";
|
2011-01-20 22:06:35 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://gnu/guile-ncurses/${name}.tar.gz";
|
2016-05-15 12:16:45 +01:00
|
|
|
sha256 = "153vv75gb7l62sp3666rc97i63rnaqbx2rjar7d9b5w81fhwv4r5";
|
2011-01-20 22:06:35 +00:00
|
|
|
};
|
|
|
|
|
2013-11-29 02:40:35 +00:00
|
|
|
buildInputs = [ guile ncurses libffi ];
|
2011-01-20 22:06:35 +00:00
|
|
|
|
|
|
|
preConfigure =
|
|
|
|
'' configureFlags="$configureFlags --with-guilesitedir=$out/share/guile/site" '';
|
|
|
|
|
2016-10-12 20:47:55 +01:00
|
|
|
postFixup =
|
|
|
|
'' for f in $out/share/guile/site/ncurses/**.scm; do \
|
|
|
|
substituteInPlace $f \
|
|
|
|
--replace "libguile-ncurses" "$out/lib/libguile-ncurses"; \
|
|
|
|
done
|
|
|
|
'';
|
|
|
|
|
2011-02-04 08:40:33 +00:00
|
|
|
doCheck = false; # XXX: 1 of 65 tests failed
|
2011-01-20 22:06:35 +00:00
|
|
|
|
|
|
|
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.
|
|
|
|
'';
|
|
|
|
|
2014-06-19 05:19:00 +01:00
|
|
|
license = stdenv.lib.licenses.lgpl3Plus;
|
2011-01-20 22:06:35 +00:00
|
|
|
|
2015-01-13 21:33:24 +00:00
|
|
|
maintainers = [ ];
|
2011-01-20 22:06:35 +00:00
|
|
|
platforms = stdenv.lib.platforms.gnu; # arbitrary choice
|
|
|
|
};
|
|
|
|
}
|