mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 06:01:15 +00:00
libtermkey: new package
Allows easy processing of keyboard entry from terminal-based programs.
This commit is contained in:
parent
c43b787f96
commit
4b2b30ea24
21
pkgs/development/libraries/libtermkey/default.nix
Normal file
21
pkgs/development/libraries/libtermkey/default.nix
Normal file
|
@ -0,0 +1,21 @@
|
|||
{ stdenv, lib, fetchzip, libtool, pkgconfig, ncurses }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "libtermkey-${version}";
|
||||
|
||||
version = "0.17";
|
||||
|
||||
src = fetchzip {
|
||||
url = "http://www.leonerd.org.uk/code/libtermkey/libtermkey-${version}.tar.gz";
|
||||
sha256 = "085mdshgqsn76gfnnzfns7awv6lals9mgv5a6bybd9f9aj7lvrm5";
|
||||
};
|
||||
|
||||
makeFlags = [ "PREFIX=$(out)" ];
|
||||
|
||||
buildInputs = [ libtool pkgconfig ncurses ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Terminal keypress reading library";
|
||||
license = with licenses; [ mit ];
|
||||
};
|
||||
}
|
|
@ -1802,6 +1802,8 @@ let
|
|||
|
||||
liboauth = callPackage ../development/libraries/liboauth { };
|
||||
|
||||
libtermkey = callPackage ../development/libraries/libtermkey { };
|
||||
|
||||
libtidy = callPackage ../development/libraries/libtidy { };
|
||||
|
||||
libtirpc = callPackage ../development/libraries/ti-rpc { };
|
||||
|
|
Loading…
Reference in a new issue