summary refs log tree commit diff
path: root/pkgs/development/libraries/unibilium/default.nix
blob: dca24c7f9ea502f5a871e28d77305a3ae6ec1c39 (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
26
27
{ stdenv, lib, fetchFromGitHub, libtool, pkgconfig, perl, ncurses }:

stdenv.mkDerivation rec {
  pname = "unibilium-unstable";

  version = "20190811";

  src = fetchFromGitHub {
    owner = "neovim";
    repo = "unibilium";
    rev = "92d929fabaf94ea4feb48149bbc3bbea77c4fab0";
    sha256 = "1l8p3fpdymba62x1f5d990v72z3m5f5g2yf505g0rlf2ysc5r1di";
  };

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

  nativeBuildInputs = [ pkgconfig perl ];
  buildInputs = [ libtool ncurses ];

  meta = with lib; {
    description = "A very basic terminfo library";
    license = licenses.lgpl3Plus;
    platforms = platforms.linux ++ platforms.darwin;
    maintainers = with maintainers; [ pSub ];
  };
}