fork
Configure Feed
Select the types of activity you want to include in your feed.
lol
fork
Configure Feed
Select the types of activity you want to include in your feed.
1{stdenv, fetchurl, cmake}:
2
3let
4 version = "3.2.5";
5in
6stdenv.mkDerivation {
7 name = "eigen-${version}";
8
9 src = fetchurl {
10 url = "http://bitbucket.org/eigen/eigen/get/${version}.tar.gz";
11 name = "eigen-${version}.tar.gz";
12 sha256 = "1vjixip19lwfia2bjpjwm09j7l20ry75493i6mjsk9djszj61agi";
13 };
14
15 nativeBuildInputs = [ cmake ];
16
17 meta = with stdenv.lib; {
18 description = "C++ template library for linear algebra: vectors, matrices, and related algorithms";
19 license = licenses.lgpl3Plus;
20 homepage = http://eigen.tuxfamily.org ;
21 platforms = platforms.unix;
22 maintainers = with stdenv.lib.maintainers; [ sander urkud raskin ];
23 inherit version;
24 };
25}