summary refs log tree commit diff
path: root/pkgs/development/libraries/eigen/default.nix
blob: 4e1559e5c73881c142409766c7cd453f476d2e7a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{stdenv, fetchurl, cmake}:

let
  version = "3.2.10";
in
stdenv.mkDerivation {
  name = "eigen-${version}";

  src = fetchurl {
    url = "http://bitbucket.org/eigen/eigen/get/${version}.tar.gz";
    name = "eigen-${version}.tar.gz";
    sha256 = "00l52y7m276gh8wjkqqcxz6x687azrm7a70s3iraxnpy9bxa9y04";
  };

  nativeBuildInputs = [ cmake ];

  doCheck = false; # a couple of tests fail with "Child aborted"

  postInstall = ''
    sed -e '/Cflags:/s@''${prefix}/@@' -i "$out"/share/pkgconfig/eigen3.pc
  '';

  meta = with stdenv.lib; {
    description = "C++ template library for linear algebra: vectors, matrices, and related algorithms";
    license = licenses.lgpl3Plus;
    homepage = http://eigen.tuxfamily.org ;
    platforms = platforms.unix;
    maintainers = with stdenv.lib.maintainers; [ sander raskin ];
    inherit version;
  };
}