nixpkgs/pkgs/development/libraries/eigen/default.nix

32 lines
648 B
Nix
Raw Normal View History

2021-04-23 03:18:44 +01:00
{ lib
, stdenv
, fetchFromGitLab
, cmake
}:
2020-03-07 17:17:19 +00:00
stdenv.mkDerivation rec {
2019-08-13 22:52:01 +01:00
pname = "eigen";
2020-03-07 17:17:19 +00:00
version = "3.3.7";
2020-03-07 17:17:19 +00:00
src = fetchFromGitLab {
owner = "libeigen";
2021-04-23 03:18:44 +01:00
repo = pname;
2020-03-07 17:17:19 +00:00
rev = version;
2021-04-23 03:18:44 +01:00
hash = "sha256-oXJ4V5rakL9EPtQF0Geptl0HMR8700FdSrOB09DbbMQ=";
};
patches = [
./include-dir.patch
];
nativeBuildInputs = [ cmake ];
meta = with lib; {
2021-04-23 03:18:44 +01:00
homepage = "https://eigen.tuxfamily.org";
description = "C++ template library for linear algebra: vectors, matrices, and related algorithms";
license = licenses.lgpl3Plus;
2021-04-23 03:18:44 +01:00
maintainers = with maintainers; [ sander raskin ];
2015-04-26 04:12:42 +01:00
platforms = platforms.unix;
};
}