symmetrica: 3.0.1 -> 3.1.0 (#386389)

authored by Mauricio Collares and committed by GitHub 172dc331 2a535d1a

+10 -7
+10 -7
pkgs/by-name/sy/symmetrica/package.nix
··· 3 3 lib, 4 4 fetchFromGitLab, 5 5 autoreconfHook, 6 + pkg-config, 6 7 }: 8 + 7 9 stdenv.mkDerivation rec { 8 10 pname = "symmetrica"; 9 - version = "3.0.1"; 11 + version = "3.1.0"; 10 12 11 13 # Fork of the original symmetrica, which can be found here 12 14 # http://www.algorithm.uni-bayreuth.de/en/research/SYMMETRICA/index.html ··· 16 18 src = fetchFromGitLab { 17 19 owner = "sagemath"; 18 20 repo = "symmetrica"; 19 - rev = version; 20 - sha256 = "0wfmrzw82f5i91d7rf24mcdqcj2fmgrgy02pw4pliz7ncwaq14w3"; 21 + tag = version; 22 + hash = "sha256-unaNQfmDcQFUKApka7eEkjceurMnX0FICQXGDbOAOXo="; 21 23 }; 22 24 23 25 nativeBuildInputs = [ 24 26 autoreconfHook 27 + pkg-config 25 28 ]; 26 29 27 30 # clang warning: passing arguments to '...' without a prototype is deprecated ··· 30 33 31 34 enableParallelBuilding = true; 32 35 33 - meta = with lib; { 36 + meta = { 34 37 description = "Collection of routines for representation theory and combinatorics"; 35 - license = licenses.isc; 36 - maintainers = teams.sage.members; 37 - platforms = platforms.unix; 38 + license = lib.licenses.isc; 39 + maintainers = lib.teams.sage.members; 40 + platforms = lib.platforms.unix; 38 41 homepage = "https://gitlab.com/sagemath/symmetrica"; 39 42 }; 40 43 }