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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
697 B
Nix
Raw Normal View History

{ stdenv, lib, fetchFromGitHub, libtool, pkg-config, perl, ncurses }:
stdenv.mkDerivation rec {
pname = "unibilium";
version = "2.1.1";
src = fetchFromGitHub {
owner = "neovim";
repo = "unibilium";
rev = "v${version}";
sha256 = "sha256-A/WECvma7u/Mmecvzi0cP168dt4v+zwC8CiFBkqWezA=";
};
makeFlags = [ "PREFIX=$(out)" "LIBTOOL=${libtool}/bin/libtool" ];
strictDeps = true;
nativeBuildInputs = [ pkg-config perl libtool ];
buildInputs = [ 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 ];
};
}