lol

eigen2: refactor

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