2018-04-24 15:07:51 +01:00
|
|
|
{ stdenv
|
|
|
|
, fetchurl
|
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "combinatorial_designs";
|
2018-04-24 15:07:51 +01:00
|
|
|
version = "20140630";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sageupstream/combinatorial_designs/combinatorial_designs-${version}.tar.bz2";
|
|
|
|
sha256 = "0bj8ngiq59hipa6izi6g5ph5akmy4cbk0vlsb0wa67f7grnnqj69";
|
|
|
|
};
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
mkdir -p "$out/share/combinatorial_designs"
|
|
|
|
mv * "$out/share/combinatorial_designs"
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Data for Combinatorial Designs";
|
|
|
|
longDescription = ''
|
|
|
|
Current content:
|
|
|
|
|
|
|
|
- The table of MOLS (10 000 integers) from the Handbook of Combinatorial
|
|
|
|
Designs, 2ed.
|
|
|
|
'';
|
|
|
|
license = licenses.publicDomain;
|
|
|
|
platforms = platforms.all;
|
2020-11-17 19:41:33 +00:00
|
|
|
maintainers = teams.sage.members;
|
2018-04-24 15:07:51 +01:00
|
|
|
};
|
|
|
|
}
|