ff8338343b
Maintaining all the packages whose updates might break some aspect of sage. For reference: https://github.com/NixOS/nixpkgs/pull/103810#issuecomment-727536510
32 lines
772 B
Nix
32 lines
772 B
Nix
{ stdenv
|
|
, fetchurl
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "combinatorial_designs";
|
|
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;
|
|
maintainers = teams.sage.members;
|
|
};
|
|
}
|