primecount: add changelog to meta
This commit is contained in:
parent
d5490032d8
commit
ddb2541b8a
1 changed files with 7 additions and 2 deletions
|
@ -16,9 +16,13 @@ stdenv.mkDerivation rec {
|
||||||
hash = "sha256-x9sXLuHd3nfVM6sL/5yAzIoTVkf1LIUnbhx2WlD/OS8=";
|
hash = "sha256-x9sXLuHd3nfVM6sL/5yAzIoTVkf1LIUnbhx2WlD/OS8=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ cmake ];
|
nativeBuildInputs = [
|
||||||
|
cmake
|
||||||
|
];
|
||||||
|
|
||||||
buildInputs = [ primesieve ];
|
buildInputs = [
|
||||||
|
primesieve
|
||||||
|
];
|
||||||
|
|
||||||
cmakeFlags = [
|
cmakeFlags = [
|
||||||
"-DBUILD_LIBPRIMESIEVE=ON"
|
"-DBUILD_LIBPRIMESIEVE=ON"
|
||||||
|
@ -30,6 +34,7 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
homepage = "https://github.com/kimwalisch/primecount";
|
homepage = "https://github.com/kimwalisch/primecount";
|
||||||
|
changelog = "https://github.com/kimwalisch/primecount/blob/v${version}/ChangeLog";
|
||||||
description = "Fast prime counting function implementations";
|
description = "Fast prime counting function implementations";
|
||||||
longDescription = ''
|
longDescription = ''
|
||||||
primecount is a command-line program and C/C++ library that counts the
|
primecount is a command-line program and C/C++ library that counts the
|
||||||
|
|
Loading…
Reference in a new issue