2021-01-19 06:50:56 +00:00
|
|
|
{ stdenv, lib, fetchFromGitHub, libtool, pkg-config, perl, ncurses }:
|
2015-03-09 03:35:25 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2022-05-23 00:04:12 +00:00
|
|
|
pname = "unibilium";
|
|
|
|
version = "2.1.1";
|
2015-03-09 03:35:25 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2019-11-20 14:58:17 +00:00
|
|
|
owner = "neovim";
|
2015-03-09 03:35:25 +00:00
|
|
|
repo = "unibilium";
|
2022-05-23 00:04:12 +00:00
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "sha256-A/WECvma7u/Mmecvzi0cP168dt4v+zwC8CiFBkqWezA=";
|
2015-03-09 03:35:25 +00:00
|
|
|
};
|
|
|
|
|
2022-05-23 00:04:12 +00:00
|
|
|
makeFlags = [ "PREFIX=$(out)" "LIBTOOL=${libtool}/bin/libtool" ];
|
|
|
|
|
|
|
|
strictDeps = true;
|
2015-03-09 03:35:25 +00:00
|
|
|
|
2022-05-23 00:04:12 +00:00
|
|
|
nativeBuildInputs = [ pkg-config perl libtool ];
|
|
|
|
buildInputs = [ ncurses ];
|
2015-03-09 03:35:25 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "A very basic terminfo library";
|
2015-05-28 17:20:29 +00:00
|
|
|
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 ];
|
2015-03-09 03:35:25 +00:00
|
|
|
};
|
|
|
|
}
|