about summary refs log tree commit diff
path: root/pkgs/applications/science
diff options
context:
space:
mode:
authorNikolay Korotkiy <sikmir@disroot.org>2024-02-05 19:53:53 +0400
committerGitHub <noreply@github.com>2024-02-05 19:53:53 +0400
commit3ca762663e703eb5722bfab7b83a9d53033249b9 (patch)
treed7900048368b59b0fa4ad1491a175399177a3c95 /pkgs/applications/science
parent729eb05518172994fce468632621d172b9d17568 (diff)
parent6d544c6ff137dfa830991786d76e591c972e5f9b (diff)
Merge pull request #286427 from r-ryantm/auto-update/gnuastro
gnuastro: 0.21 -> 0.22
Diffstat (limited to 'pkgs/applications/science')
-rw-r--r--pkgs/applications/science/astronomy/gnuastro/default.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/applications/science/astronomy/gnuastro/default.nix b/pkgs/applications/science/astronomy/gnuastro/default.nix
index a1fef6404e460..d1c40d3fefb3e 100644
--- a/pkgs/applications/science/astronomy/gnuastro/default.nix
+++ b/pkgs/applications/science/astronomy/gnuastro/default.nix
@@ -3,11 +3,11 @@
 
 stdenv.mkDerivation rec {
   pname = "gnuastro";
-  version = "0.21";
+  version = "0.22";
 
   src = fetchurl {
     url = "mirror://gnu/gnuastro/gnuastro-${version}.tar.gz";
-    sha256 = "sha256-L7qZPYQiORUXtV9+tRF4iUbXqIaqFYSYT9Rni90nU38=";
+    sha256 = "sha256-f9fxaga95VrtliggkM2SITW+6pAjaeWvgUOJ6rnMcwg=";
   };
 
   nativeBuildInputs = [ libtool ];
@@ -29,6 +29,7 @@ stdenv.mkDerivation rec {
   meta = with lib; {
     description = "GNU astronomy utilities and library";
     homepage = "https://www.gnu.org/software/gnuastro/";
+    changelog = "https://git.savannah.gnu.org/cgit/gnuastro.git/plain/NEWS?id=gnuastro_v${version}";
     license = licenses.gpl3Plus;
     platforms = platforms.unix;
     maintainers = with maintainers; [ sikmir ];