nixpkgs/pkgs/development/libraries/unibilium/default.nix

28 lines
754 B
Nix
Raw Permalink Normal View History

{ stdenv, lib, fetchFromGitHub, libtool, pkg-config, perl, ncurses }:
stdenv.mkDerivation rec {
pname = "unibilium-unstable";
version = "20190811";
src = fetchFromGitHub {
owner = "neovim";
repo = "unibilium";
rev = "92d929fabaf94ea4feb48149bbc3bbea77c4fab0";
sha256 = "1l8p3fpdymba62x1f5d990v72z3m5f5g2yf505g0rlf2ysc5r1di";
};
2015-06-10 08:03:23 +00:00
makeFlags = [ "PREFIX=$(out)" ]
++ lib.optional stdenv.isDarwin "LIBTOOL=${libtool}/bin/libtool";
nativeBuildInputs = [ pkg-config perl ];
buildInputs = [ libtool ncurses ];
meta = with lib; {
description = "A very basic terminfo library";
license = licenses.lgpl3Plus;
2016-06-06 08:56:08 +00:00
platforms = platforms.linux ++ platforms.darwin;
2016-03-19 11:01:22 +00:00
maintainers = with maintainers; [ pSub ];
};
}