forked from mirrors/nixpkgs
e14d70d955
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/primesieve/versions
22 lines
560 B
Nix
22 lines
560 B
Nix
{ stdenv, fetchurl, cmake }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "primesieve-${version}";
|
|
version = "7.4";
|
|
|
|
nativeBuildInputs = [cmake];
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/kimwalisch/primesieve/archive/v${version}.tar.gz";
|
|
sha256 = "16930d021ai8cl3gsnn2v6l30n6mklwwqd53z51cddd3dj69x6zz";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|