2018-05-07 22:11:31 +01:00
|
|
|
{ stdenv
|
2020-03-10 11:59:48 +00:00
|
|
|
, lib
|
|
|
|
, fetchFromGitLab
|
2018-05-07 22:11:31 +01:00
|
|
|
, fetchpatch
|
2020-03-10 11:59:48 +00:00
|
|
|
, autoreconfHook
|
2018-05-07 22:11:31 +01:00
|
|
|
}:
|
2016-10-10 17:43:16 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "symmetrica";
|
2020-03-10 11:59:48 +00:00
|
|
|
version = "3.0.1";
|
|
|
|
|
|
|
|
# Fork of the original symmetrica, which can be found here
|
|
|
|
# http://www.algorithm.uni-bayreuth.de/en/research/SYMMETRICA/index.html
|
|
|
|
# "This fork was created to modernize the codebase, and to resume making
|
|
|
|
# releases with the fixes that have accrued over the years."
|
|
|
|
# Also see https://trac.sagemath.org/ticket/29061#comment:3.
|
|
|
|
src = fetchFromGitLab {
|
|
|
|
owner = "sagemath";
|
|
|
|
repo = "symmetrica";
|
|
|
|
rev = version;
|
|
|
|
sha256 = "0wfmrzw82f5i91d7rf24mcdqcj2fmgrgy02pw4pliz7ncwaq14w3";
|
2016-10-10 17:43:16 +01:00
|
|
|
};
|
2018-08-14 06:07:04 +01:00
|
|
|
|
2020-03-10 11:59:48 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
autoreconfHook
|
2018-05-07 22:11:31 +01:00
|
|
|
];
|
2018-08-14 06:07:04 +01:00
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2020-03-10 11:59:48 +00:00
|
|
|
meta = with lib; {
|
2016-10-10 17:43:16 +01:00
|
|
|
description = ''A collection of routines for representation theory and combinatorics'';
|
2020-03-10 11:59:48 +00:00
|
|
|
license = licenses.isc;
|
2020-03-10 12:13:19 +00:00
|
|
|
maintainers = with maintainers; [raskin timokau];
|
2020-03-10 11:59:48 +00:00
|
|
|
platforms = platforms.unix;
|
|
|
|
homepage = "https://gitlab.com/sagemath/symmetrica";
|
2016-10-10 17:43:16 +01:00
|
|
|
};
|
|
|
|
}
|