Skip to content

Commit 30fd93f

Browse files
author
emaryn
committed
symmetrica: 3.0.1 -> 3.1.0
1 parent dce71cf commit 30fd93f

File tree

1 file changed

+10
-7
lines changed

1 file changed

+10
-7
lines changed

pkgs/by-name/sy/symmetrica/package.nix

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,12 @@
33
lib,
44
fetchFromGitLab,
55
autoreconfHook,
6+
pkg-config,
67
}:
8+
79
stdenv.mkDerivation rec {
810
pname = "symmetrica";
9-
version = "3.0.1";
11+
version = "3.1.0";
1012

1113
# Fork of the original symmetrica, which can be found here
1214
# http://www.algorithm.uni-bayreuth.de/en/research/SYMMETRICA/index.html
@@ -16,12 +18,13 @@ stdenv.mkDerivation rec {
1618
src = fetchFromGitLab {
1719
owner = "sagemath";
1820
repo = "symmetrica";
19-
rev = version;
20-
sha256 = "0wfmrzw82f5i91d7rf24mcdqcj2fmgrgy02pw4pliz7ncwaq14w3";
21+
tag = version;
22+
hash = "sha256-unaNQfmDcQFUKApka7eEkjceurMnX0FICQXGDbOAOXo=";
2123
};
2224

2325
nativeBuildInputs = [
2426
autoreconfHook
27+
pkg-config
2528
];
2629

2730
# clang warning: passing arguments to '...' without a prototype is deprecated
@@ -30,11 +33,11 @@ stdenv.mkDerivation rec {
3033

3134
enableParallelBuilding = true;
3235

33-
meta = with lib; {
36+
meta = {
3437
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;
3841
homepage = "https://gitlab.com/sagemath/symmetrica";
3942
};
4043
}

0 commit comments

Comments
 (0)