forked from mirrors/nixpkgs
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:
parent
2ec1f1203b
commit
c43b787f96
23
pkgs/development/libraries/unibilium/default.nix
Normal file
23
pkgs/development/libraries/unibilium/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue