Author: ludo
Date: Thu Jan 20 22:06:35 2011
New Revision: 25646
URL: https://svn.nixos.org/websvn/nix/?rev=25646&sc=1
Log:
GNU Guile-Ncurses 1.2.
Added:
nixpkgs/trunk/pkgs/development/guile-modules/guile-ncurses/
nixpkgs/trunk/pkgs/development/guile-modules/guile-ncurses/default.nix
Modified:
nixpkgs/trunk/pkgs/top-level/all-packages.nix
Added: nixpkgs/trunk/pkgs/development/guile-modules/guile-ncurses/default.nix
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ nixpkgs/trunk/pkgs/development/guile-modules/guile-ncurses/default.nix
Thu Jan 20 22:06:35 2011 (r25646)
@@ -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
+ };
+}
Modified: nixpkgs/trunk/pkgs/top-level/all-packages.nix
==============================================================================
--- nixpkgs/trunk/pkgs/top-level/all-packages.nix Thu Jan 20 22:05:28
2011 (r25645)
+++ nixpkgs/trunk/pkgs/top-level/all-packages.nix Thu Jan 20 22:06:35
2011 (r25646)
@@ -2417,6 +2417,8 @@
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;
_______________________________________________
nix-commits mailing list
[email protected]
http://mail.cs.uu.nl/mailman/listinfo/nix-commits