mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
1b88bb9dc9
Semi-automatic update. These checks were performed: - built on NixOS - found 0.20 with grep in /nix/store/4sswlqrcz5y3s241l0vgrbsyzcrl9gn5-libtermkey-0.20 - found 0.20 in filename of file in /nix/store/4sswlqrcz5y3s241l0vgrbsyzcrl9gn5-libtermkey-0.20
25 lines
647 B
Nix
25 lines
647 B
Nix
{ stdenv, lib, fetchzip, libtool, pkgconfig, ncurses }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "libtermkey-${version}";
|
|
|
|
version = "0.20";
|
|
|
|
src = fetchzip {
|
|
url = "http://www.leonerd.org.uk/code/libtermkey/libtermkey-${version}.tar.gz";
|
|
sha256 = "1i5a2zangq61ba1vdkag34ig5g4gzccldccdbcmqmk93saa6lkbx";
|
|
};
|
|
|
|
makeFlags = [ "PREFIX=$(out)" ]
|
|
++ stdenv.lib.optional stdenv.isDarwin "LIBTOOL=${libtool}/bin/libtool";
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [ libtool ncurses ];
|
|
|
|
meta = with lib; {
|
|
description = "Terminal keypress reading library";
|
|
license = licenses.mit;
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|