buildNativeInputs -> nativeBuildInputs

This commit is contained in:
Mathijs Kwik
2013-01-13 11:33:45 +01:00
parent 418f6a536f
commit 0890c45498
5 changed files with 8 additions and 8 deletions
+4 -4
View File
@@ -5,15 +5,15 @@ let
in
stdenv.mkDerivation {
name = "eigen-${v}";
src = fetchurl {
url = "http://bitbucket.org/eigen/eigen/get/${v}.tar.bz2";
name = "eigen-${v}.tar.bz2";
sha256 = "1akcb4g5hvc664gfc6sxb6f6jrm55fgks6017wg0smyvmm6k09v0";
};
buildNativeInputs = [ cmake ];
nativeBuildInputs = [ cmake ];
meta = with stdenv.lib; {
description = "C++ template library for linear algebra: vectors, matrices, and related algorithms";
license = licenses.lgpl3Plus;