mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-18 19:03:28 +00:00
GNU Guile-Ncurses 1.2.
svn path=/nixpkgs/trunk/; revision=25646
This commit is contained in:
parent
038e045bc7
commit
72a6bbc02c
34
pkgs/development/guile-modules/guile-ncurses/default.nix
Normal file
34
pkgs/development/guile-modules/guile-ncurses/default.nix
Normal 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
|
||||
};
|
||||
}
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user