57bccb3cb8
* treewide: http -> https sources This updates the source urls of all top-level packages from http to https where possible. * buildtorrent: fix url and tab -> spaces
32 lines
847 B
Nix
32 lines
847 B
Nix
{stdenv, fetchurl, cmake}:
|
|
|
|
let
|
|
version = "3.2.10";
|
|
in
|
|
stdenv.mkDerivation {
|
|
name = "eigen-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "https://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;
|
|
};
|
|
}
|