4a5b7854a8
Michael, sorry for overriding your work but I want to maintain it... svn path=/nixpkgs/trunk/; revision=26058
21 lines
607 B
Nix
21 lines
607 B
Nix
{stdenv, fetchurl, cmake}:
|
|
|
|
let
|
|
v = "2.0.15";
|
|
in
|
|
stdenv.mkDerivation {
|
|
name = "eigen-${v}";
|
|
src = fetchurl {
|
|
url = "http://bitbucket.org/eigen/eigen/get/${v}.tar.bz2";
|
|
name = "eigen-${v}.tar.bz2";
|
|
sha256 = "1a00hqyig4rc7nkz97xv23q7k0vdkzvgd0jkayk61fn9aqcrky79";
|
|
};
|
|
buildNativeInputs = [ cmake ];
|
|
meta = with stdenv.lib; {
|
|
description = "C++ template library for linear algebra: vectors, matrices, and related algorithms";
|
|
license = licenses.lgpl3Plus;
|
|
homepage = http://eigen.tuxfamily.org ;
|
|
maintainers = with stdenv.lib.maintainers; [ sander urkud raskin ];
|
|
};
|
|
}
|