lol

eigen2: refactor

+5 -6
+5 -6
pkgs/development/libraries/eigen/2.0.nix
··· 6 7 src = fetchFromGitLab { 8 owner = "libeigen"; 9 - repo = "eigen"; 10 rev = version; 11 - sha256 = "0d4knrcz04pxmxaqs5r3wv092950kl1z9wsw87vdzi9kgvc6wl0b"; 12 }; 13 14 nativeBuildInputs = [ cmake ]; 15 16 meta = with lib; { 17 description = "C++ template library for linear algebra: vectors, matrices, and related algorithms"; 18 license = licenses.lgpl3Plus; 19 - homepage = "https://eigen.tuxfamily.org"; 20 - maintainers = with lib.maintainers; [ sander raskin ]; 21 - branch = "2"; 22 - platforms = with lib.platforms; unix; 23 }; 24 }
··· 6 7 src = fetchFromGitLab { 8 owner = "libeigen"; 9 + repo = pname; 10 rev = version; 11 + hash = "sha256-C1Bu2H4zxd/2QVzz9AOdoCSRwOYjF41Vr/0S8Fm2kzQ="; 12 }; 13 14 nativeBuildInputs = [ cmake ]; 15 16 meta = with lib; { 17 + homepage = "https://eigen.tuxfamily.org"; 18 description = "C++ template library for linear algebra: vectors, matrices, and related algorithms"; 19 license = licenses.lgpl3Plus; 20 + maintainers = with maintainers; [ sander raskin ]; 21 + platforms = platforms.unix; 22 }; 23 }