summary refs log tree commit diff
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2021-10-01 04:20:00 +0000
committerMario Rodas <marsam@users.noreply.github.com>2021-10-01 04:20:00 +0000
commit0d8c23b91690e6a342303bccc1a57c9aff4095bb (patch)
tree5ab71a43381ddd872f246a1b6ec7f7eb1a4e384c
parent502d950f7d8591fb4eaec12e7fbfe690c4a79bf2 (diff)
downloadnixpkgs-0d8c23b91690e6a342303bccc1a57c9aff4095bb.tar
nixpkgs-0d8c23b91690e6a342303bccc1a57c9aff4095bb.tar.gz
nixpkgs-0d8c23b91690e6a342303bccc1a57c9aff4095bb.tar.bz2
nixpkgs-0d8c23b91690e6a342303bccc1a57c9aff4095bb.tar.lz
nixpkgs-0d8c23b91690e6a342303bccc1a57c9aff4095bb.tar.xz
nixpkgs-0d8c23b91690e6a342303bccc1a57c9aff4095bb.tar.zst
nixpkgs-0d8c23b91690e6a342303bccc1a57c9aff4095bb.zip
libvterm-neovim: fix nativeBuildInputs
-rw-r--r--pkgs/development/libraries/libvterm-neovim/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/libraries/libvterm-neovim/default.nix b/pkgs/development/libraries/libvterm-neovim/default.nix
index e4a05360183..ec6e489f284 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";