summary refs log tree commit diff
path: root/pkgs/development/libraries/libtermkey/default.nix
blob: 9779ad6b9e5feb54a642c9ad9bdc3800c567a665 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ stdenv, lib, fetchzip, libtool, pkg-config, ncurses, unibilium }:

stdenv.mkDerivation rec {
  pname = "libtermkey";

  version = "0.22";

  src = fetchzip {
    url = "http://www.leonerd.org.uk/code/libtermkey/libtermkey-${version}.tar.gz";
    sha256 = "02dks6bj7n23lj005yq41azf95wh3hapmgc2lzyh12vigkjh67rg";
  };

  makeFlags = [ "PREFIX=$(out)" ]
    ++ lib.optional stdenv.isDarwin "LIBTOOL=${libtool}/bin/libtool";

  nativeBuildInputs = [ libtool pkg-config ];
  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;
  };
}