From 0d8c23b91690e6a342303bccc1a57c9aff4095bb Mon Sep 17 00:00:00 2001 From: Mario Rodas Date: Fri, 1 Oct 2021 04:20:00 +0000 Subject: [PATCH] libvterm-neovim: fix nativeBuildInputs --- pkgs/development/libraries/libvterm-neovim/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/libraries/libvterm-neovim/default.nix b/pkgs/development/libraries/libvterm-neovim/default.nix index e4a053601833..ec6e489f2845 100644 --- a/pkgs/development/libraries/libvterm-neovim/default.nix +++ b/pkgs/development/libraries/libvterm-neovim/default.nix @@ -1,4 +1,5 @@ -{ lib, stdenv +{ lib +, stdenv , fetchFromGitHub , perl , libtool @@ -16,8 +17,7 @@ stdenv.mkDerivation { sha256 = "0r6yimzbkgrsi9aaxwvxahai2lzgjd1ysblr6m6by5w459853q3n"; }; - buildInputs = [ perl ]; - nativeBuildInputs = [ libtool ]; + nativeBuildInputs = [ perl libtool ]; makeFlags = [ "PREFIX=$(out)" ] ++ lib.optional stdenv.isDarwin "LIBTOOL=${libtool}/bin/libtool";