unibilium: new package

Unibilium is a very basic terminfo library. It doesn't depend on curses
or any other library. It also doesn't use global variables, so it should
be thread-safe.
This commit is contained in:
Charles Strahan 2015-03-08 23:35:25 -04:00
parent 2ec1f1203b
commit c43b787f96
2 changed files with 25 additions and 0 deletions

View file

@ -0,0 +1,23 @@
{ stdenv, lib, fetchFromGitHub, libtool, pkgconfig }:
stdenv.mkDerivation rec {
name = "unibilium-${version}";
version = "1.1.2";
src = fetchFromGitHub {
owner = "mauke";
repo = "unibilium";
rev = "v${version}";
sha256 = "143j7qrqjxxmdf3yzhn6av2qwiyjjk4cnskkgz6ir2scjfd5gvja";
};
makeFlags = [ "PREFIX=$(out)" ];
buildInputs = [ libtool pkgconfig ];
meta = with lib; {
description = "A very basic terminfo library";
license = with licenses; [ lgpl3Plus ];
};
}

View file

@ -7501,6 +7501,8 @@ let
uid_wrapper = callPackage ../development/libraries/uid_wrapper { };
unibilium = callPackage ../development/libraries/unibilium { };
unicap = callPackage ../development/libraries/unicap {};
tsocks = callPackage ../development/libraries/tsocks { };