about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/libtermkey/default.nix
blob: a96baf0d9f3e04b3df74db0119e448efc943bda2 (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)" "LIBTOOL=${libtool}/bin/libtool" ];

  nativeBuildInputs = [ libtool pkg-config ];
  buildInputs = [ ncurses unibilium ];

  strictDeps = true;

  meta = with lib; {
    description = "Terminal keypress reading library";
    homepage = "http://www.leonerd.org.uk/code/libtermkey";
    license = licenses.mit;
    platforms = platforms.unix;
  };
}