about summary refs log tree commit diff
path: root/pkgs/by-name/pr
diff options
context:
space:
mode:
authorAnderson Torres <torres.anderson.85@protonmail.com>2024-03-10 17:27:52 -0300
committerAnderson Torres <torres.anderson.85@protonmail.com>2024-03-11 11:04:30 -0300
commit0c68a08dd7e7518febabce43fa4808e515c0fd49 (patch)
tree39b2beff59a7a78001b47eee9edbc92265db6041 /pkgs/by-name/pr
parent0aedcfc0b0d5bda5c5233cf2e5320d9c47fc12bd (diff)
downloadnixlib-0c68a08dd7e7518febabce43fa4808e515c0fd49.tar
nixlib-0c68a08dd7e7518febabce43fa4808e515c0fd49.tar.gz
nixlib-0c68a08dd7e7518febabce43fa4808e515c0fd49.tar.bz2
nixlib-0c68a08dd7e7518febabce43fa4808e515c0fd49.tar.lz
nixlib-0c68a08dd7e7518febabce43fa4808e515c0fd49.tar.xz
nixlib-0c68a08dd7e7518febabce43fa4808e515c0fd49.tar.zst
nixlib-0c68a08dd7e7518febabce43fa4808e515c0fd49.zip
primecount: migrate to by-name
Diffstat (limited to 'pkgs/by-name/pr')
-rw-r--r--pkgs/by-name/pr/primecount/package.nix56
1 files changed, 56 insertions, 0 deletions
diff --git a/pkgs/by-name/pr/primecount/package.nix b/pkgs/by-name/pr/primecount/package.nix
new file mode 100644
index 000000000000..c3e2565989ed
--- /dev/null
+++ b/pkgs/by-name/pr/primecount/package.nix
@@ -0,0 +1,56 @@
+{ lib
+, stdenv
+, fetchFromGitHub
+, cmake
+, primesieve
+}:
+
+stdenv.mkDerivation rec {
+  pname = "primecount";
+  version = "7.10";
+
+  src = fetchFromGitHub {
+    owner = "kimwalisch";
+    repo = "primecount";
+    rev = "v${version}";
+    hash = "sha256-z7sHGR6zZSTV1PbL0WPGHf52CYQ572KC1yznCuIEJbQ=";
+  };
+
+  nativeBuildInputs = [
+    cmake
+  ];
+
+  buildInputs = [
+    primesieve
+  ];
+
+  cmakeFlags = [
+    "-DBUILD_LIBPRIMESIEVE=ON"
+    "-DBUILD_PRIMECOUNT=ON"
+    "-DBUILD_SHARED_LIBS=ON"
+    "-DBUILD_STATIC_LIBS=OFF"
+    "-DBUILD_TESTS=ON"
+  ];
+
+  meta = with lib; {
+    homepage = "https://github.com/kimwalisch/primecount";
+    changelog = "https://github.com/kimwalisch/primecount/blob/v${version}/ChangeLog";
+    description = "Fast prime counting function implementations";
+    longDescription = ''
+      primecount is a command-line program and C/C++ library that counts the
+      primes below an integer x ≤ 10^31 using highly optimized implementations
+      of the combinatorial prime counting algorithms.
+
+      primecount includes implementations of all important combinatorial prime
+      counting algorithms known up to this date all of which have been
+      parallelized using OpenMP. primecount contains the first ever open source
+      implementations of the Deleglise-Rivat algorithm and Xavier Gourdon's
+      algorithm (that works). primecount also features a novel load balancer
+      that is shared amongst all implementations and that scales up to hundreds
+      of CPU cores. primecount has already been used to compute several prime
+      counting function world records.
+    '';
+    license = licenses.bsd2;
+    inherit (primesieve.meta) maintainers platforms;
+  };
+}