about summary refs log tree commit diff
path: root/pkgs/development/libraries/libtermkey
diff options
context:
space:
mode:
authorMatthieu Coudron <mattator@gmail.com>2019-12-01 00:03:16 +0100
committerMatthieu Coudron <coudron@iij.ad.jp>2019-12-05 13:37:31 +0100
commit9c6ceb58f5eaf0ddff0ad746f818400d2bfd8231 (patch)
treefff9012cca4b048e1c76406e7e66ee88dfc15dbe /pkgs/development/libraries/libtermkey
parent272d9b91a07088f864c20566a9a8ceeb18bde2bc (diff)
libtermkey: compile with unibilium
As the alternative isn't well tested and will be ruled out very soon.
Diffstat (limited to 'pkgs/development/libraries/libtermkey')
-rw-r--r--pkgs/development/libraries/libtermkey/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/development/libraries/libtermkey/default.nix b/pkgs/development/libraries/libtermkey/default.nix
index a30d32354112e..989d26b64e1b0 100644
--- a/pkgs/development/libraries/libtermkey/default.nix
+++ b/pkgs/development/libraries/libtermkey/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, lib, fetchzip, libtool, pkgconfig, ncurses }:
+{ stdenv, lib, fetchzip, libtool, pkgconfig, ncurses, unibilium }:
 
 stdenv.mkDerivation rec {
   pname = "libtermkey";
@@ -13,11 +13,12 @@ stdenv.mkDerivation rec {
   makeFlags = [ "PREFIX=$(out)" ]
     ++ stdenv.lib.optional stdenv.isDarwin "LIBTOOL=${libtool}/bin/libtool";
 
-  nativeBuildInputs = [ pkgconfig ];
-  buildInputs = [ libtool ncurses ];
+  nativeBuildInputs = [ libtool pkgconfig ];
+  buildInputs = [ ncurses unibilium ];
 
   meta = with lib; {
     description = "Terminal keypress reading library";
+    homepage = http://www.leonerd.org.uk/code/libtermkey;
     license = licenses.mit;
     platforms = platforms.unix;
   };