libvterm-neovim: init at 2017-11-05

wip/yesman
adisbladis 6 years ago
parent b19c92be90
commit 3290800d67
No known key found for this signature in database
GPG Key ID: ED58F95069B004F5
  1. 32
      pkgs/applications/editors/neovim/default.nix
  2. 33
      pkgs/development/libraries/libvterm-neovim/default.nix
  3. 1
      pkgs/top-level/all-packages.nix

@ -1,6 +1,7 @@
{ stdenv, fetchFromGitHub, cmake, gettext, libmsgpack, libtermkey
, libtool, libuv, luaPackages, ncurses, perl, pkgconfig
, unibilium, vimUtils, xsel, gperf, callPackage
, libvterm-neovim
, withJemalloc ? true, jemalloc
}:
@ -8,35 +9,6 @@ with stdenv.lib;
let
# Note: this is NOT the libvterm already in nixpkgs, but some NIH silliness:
neovimLibvterm = stdenv.mkDerivation rec {
name = "neovim-libvterm-${version}";
version = "2017-11-05";
src = fetchFromGitHub {
owner = "neovim";
repo = "libvterm";
rev = "4ca7ebf7d25856e90bc9d9cc49412e80be7c4ea8";
sha256 = "05kyvvz8af90mvig11ya5xd8f4mbvapwyclyrihm9lwas706lzf6";
};
buildInputs = [ perl ];
nativeBuildInputs = [ libtool ];
makeFlags = [ "PREFIX=$(out)" ]
++ stdenv.lib.optional stdenv.isDarwin "LIBTOOL=${libtool}/bin/libtool";
enableParallelBuilding = true;
meta = {
description = "VT220/xterm/ECMA-48 terminal emulator library";
homepage = http://www.leonerd.org.uk/code/libvterm/;
license = licenses.mit;
maintainers = with maintainers; [ garbas ];
platforms = platforms.unix;
};
};
neovim = stdenv.mkDerivation rec {
name = "neovim-unwrapped-${version}";
version = "0.2.2";
@ -55,7 +27,7 @@ let
libuv
libmsgpack
ncurses
neovimLibvterm
libvterm-neovim
unibilium
luaPackages.lua
gperf

@ -0,0 +1,33 @@
{ stdenv
, fetchFromGitHub
, perl
, libtool
}:
stdenv.mkDerivation rec {
name = "neovim-libvterm-${version}";
version = "2017-11-05";
src = fetchFromGitHub {
owner = "neovim";
repo = "libvterm";
rev = "4ca7ebf7d25856e90bc9d9cc49412e80be7c4ea8";
sha256 = "05kyvvz8af90mvig11ya5xd8f4mbvapwyclyrihm9lwas706lzf6";
};
buildInputs = [ perl ];
nativeBuildInputs = [ libtool ];
makeFlags = [ "PREFIX=$(out)" ]
++ stdenv.lib.optional stdenv.isDarwin "LIBTOOL=${libtool}/bin/libtool";
enableParallelBuilding = true;
meta = with stdenv.lib; {
description = "VT220/xterm/ECMA-48 terminal emulator library";
homepage = http://www.leonerd.org.uk/code/libvterm/;
license = licenses.mit;
maintainers = with maintainers; [ garbas ];
platforms = platforms.unix;
};
}

@ -10529,6 +10529,7 @@ with pkgs;
libvpx-git = callPackage ../development/libraries/libvpx/git.nix { };
libvterm = callPackage ../development/libraries/libvterm { };
libvterm-neovim = callPackage ../development/libraries/libvterm-neovim { };
libvorbis = callPackage ../development/libraries/libvorbis { };

Loading…
Cancel
Save