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