2019-06-16 21:59:06 +02:00
|
|
|
{stdenv, fetchurl, cmake}:
|
2011-01-28 09:13:52 +01:00
|
|
|
|
2011-02-22 12:54:56 +01:00
|
|
|
let
|
2018-12-16 06:46:58 +01:00
|
|
|
version = "3.3.7";
|
2011-01-28 09:13:52 +01:00
|
|
|
in
|
2011-02-22 12:54:56 +01:00
|
|
|
stdenv.mkDerivation {
|
2019-08-13 23:52:01 +02:00
|
|
|
pname = "eigen";
|
|
|
|
inherit version;
|
2018-04-25 05:20:18 +02:00
|
|
|
|
2011-02-22 12:54:56 +01:00
|
|
|
src = fetchurl {
|
2018-06-28 20:43:35 +02:00
|
|
|
url = "https://bitbucket.org/eigen/eigen/get/${version}.tar.gz";
|
2014-08-31 18:44:17 +02:00
|
|
|
name = "eigen-${version}.tar.gz";
|
2018-12-16 06:46:58 +01:00
|
|
|
sha256 = "1nnh0v82a5xibcjaph51mx06mxbllk77fvihnd5ba0kpl23yz13y";
|
2011-01-28 09:13:52 +01:00
|
|
|
};
|
2018-04-25 05:20:18 +02:00
|
|
|
|
2018-11-18 13:09:57 +01:00
|
|
|
patches = [
|
|
|
|
./include-dir.patch
|
|
|
|
];
|
2018-04-25 05:20:18 +02:00
|
|
|
|
2018-11-18 13:09:57 +01:00
|
|
|
nativeBuildInputs = [ cmake ];
|
2018-04-25 05:20:18 +02:00
|
|
|
|
2011-02-22 12:54:56 +01:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "C++ template library for linear algebra: vectors, matrices, and related algorithms";
|
|
|
|
license = licenses.lgpl3Plus;
|
|
|
|
homepage = http://eigen.tuxfamily.org ;
|
2015-04-26 05:12:42 +02:00
|
|
|
platforms = platforms.unix;
|
2017-03-27 19:11:17 +02:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ sander raskin ];
|
2014-08-31 18:42:00 +02:00
|
|
|
inherit version;
|
2011-01-28 09:13:52 +01:00
|
|
|
};
|
2011-02-22 12:54:56 +01:00
|
|
|
}
|