From ddb2541b8a86960f170e36aea12ff5624620c586 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sun, 11 Dec 2022 01:14:49 +0100 Subject: [PATCH] primecount: add changelog to meta --- pkgs/applications/science/math/primecount/default.nix | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/science/math/primecount/default.nix b/pkgs/applications/science/math/primecount/default.nix index ce844d35cbfb..8fd2644ba110 100644 --- a/pkgs/applications/science/math/primecount/default.nix +++ b/pkgs/applications/science/math/primecount/default.nix @@ -16,9 +16,13 @@ stdenv.mkDerivation rec { hash = "sha256-x9sXLuHd3nfVM6sL/5yAzIoTVkf1LIUnbhx2WlD/OS8="; }; - nativeBuildInputs = [ cmake ]; + nativeBuildInputs = [ + cmake + ]; - buildInputs = [ primesieve ]; + buildInputs = [ + primesieve + ]; cmakeFlags = [ "-DBUILD_LIBPRIMESIEVE=ON" @@ -30,6 +34,7 @@ stdenv.mkDerivation rec { 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