32 lines
793 B
Nix
32 lines
793 B
Nix
{ stdenv
|
|
, fetchurl
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "combinatorial_designs-${version}";
|
|
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 = with maintainers; [ timokau ];
|
|
};
|
|
}
|