primesieve: init at 7.3

This commit is contained in:
Guillaume Bouchard 2019-02-04 13:03:50 +01:00
parent 6e8ce991f8
commit 9f0ee6c606
2 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1,21 @@
{ stdenv, fetchurl, cmake }:
stdenv.mkDerivation rec {
name = "primesieve-${version}";
version = "7.3";
nativeBuildInputs = [cmake];
src = fetchurl {
url = "https://github.com/kimwalisch/primesieve/archive/v${version}.tar.gz";
sha256 = "0l7h5r4c7hijh0c0nsdxvjqzc9dbhlx535b87fglf2i2p9la1x5v";
};
meta = with stdenv.lib; {
description = "Fast C/C++ prime number generator";
homepage = "https://primesieve.org/";
license = licenses.bsd2;
platforms = platforms.unix;
maintainers = with maintainers; [ abbradar ];
};
}

View File

@ -12014,6 +12014,8 @@ in
portmidi = callPackage ../development/libraries/portmidi {};
primesieve = callPackage ../development/libraries/science/math/primesieve { };
prison = callPackage ../development/libraries/prison { };
proj = callPackage ../development/libraries/proj { };