2022-05-18 14:49:53 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchFromGitHub
|
|
|
|
, cmake
|
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "primesieve";
|
2023-05-24 13:37:59 +00:00
|
|
|
version = "11.1";
|
2022-05-18 14:49:53 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "kimwalisch";
|
|
|
|
repo = "primesieve";
|
|
|
|
rev = "v${version}";
|
2023-05-24 13:37:59 +00:00
|
|
|
hash = "sha256-b6X3zhoJsO3UiWfeW4zbKsaoofIWArJi5usof3efQ0k=";
|
2022-05-18 14:49:53 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
homepage = "https://primesieve.org/";
|
2022-12-17 10:02:37 +00:00
|
|
|
changelog = "https://github.com/kimwalisch/primesieve/blob/v${version}/ChangeLog";
|
2022-05-18 14:49:53 +00:00
|
|
|
description = "Fast C/C++ prime number generator";
|
|
|
|
longDescription = ''
|
|
|
|
primesieve is a command-line program and C/C++ library for quickly
|
|
|
|
generating prime numbers. It is very cache efficient, it detects your
|
|
|
|
CPU's L1 & L2 cache sizes and allocates its main data structures
|
|
|
|
accordingly. It is also multi-threaded by default, it uses all available
|
|
|
|
CPU cores whenever possible i.e. if sequential ordering is not
|
|
|
|
required. primesieve can generate primes and prime k-tuplets up to 264.
|
|
|
|
'';
|
|
|
|
license = licenses.bsd2;
|
|
|
|
maintainers = teams.sage.members ++
|
|
|
|
(with maintainers; [ abbradar AndersonTorres ]);
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|