3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/libraries/science/math/primesieve/default.nix
R. RyanTM e14d70d955 primesieve: 7.3 -> 7.4 (#57375)
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
2019-03-12 22:43:56 +01:00

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 ];
};
}