nixpkgs/pkgs/by-name/pr/primesieve/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

50 lines
1.4 KiB
Nix
Raw Normal View History

2022-05-14 13:56:13 +00:00
{ lib
, cmake
, fetchFromGitHub
, stdenv
, primecount
2022-05-14 13:56:13 +00:00
}:
stdenv.mkDerivation (finalAttrs: {
2022-05-14 13:56:13 +00:00
pname = "primesieve";
2024-04-19 03:01:41 +00:00
version = "12.3";
2022-05-14 13:56:13 +00:00
src = fetchFromGitHub {
owner = "kimwalisch";
repo = "primesieve";
rev = "v${finalAttrs.version}";
2024-04-19 03:01:41 +00:00
hash = "sha256-jULYLJK3iwPKgWpdTEetmSz1Nv2md1XUfR9A9mTQu9M=";
2022-05-14 13:56:13 +00:00
};
outputs = [ "out" "dev" "lib" "man" ];
2022-05-14 13:56:13 +00:00
nativeBuildInputs = [ cmake ];
strictDeps = true;
passthru = {
tests = {
inherit primecount; # dependent
};
};
meta = {
2022-05-14 13:56:13 +00:00
homepage = "https://primesieve.org/";
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.
'';
changelog = "https://github.com/kimwalisch/primesieve/blob/${finalAttrs.src.rev}/ChangeLog";
license = lib.licenses.bsd2;
mainProgram = "primesieve";
maintainers = lib.teams.sage.members ++
(with lib.maintainers; [ abbradar AndersonTorres ]);
platforms = lib.platforms.unix;
2022-05-14 13:56:13 +00:00
};
})