about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2022-10-23 16:17:04 -0500
committerGitHub <noreply@github.com>2022-10-23 16:17:04 -0500
commit86ad681303d9bc567cca762b239f3fde0b951d64 (patch)
treebe65155d63639d02958016d420a6d3480c4fd95c
parentbc0ac591dd0747ddfc9c1477a5753c4d7c312808 (diff)
parent5bc624d91f60103dd6b18eeedbe0eed98bd66986 (diff)
Merge pull request #194195 from r-ryantm/auto-update/gnuplot
gnuplot: 5.4.4 -> 5.4.5
-rw-r--r--pkgs/tools/graphics/gnuplot/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/graphics/gnuplot/default.nix b/pkgs/tools/graphics/gnuplot/default.nix
index bcb464d375e11..ed8bde2a23fb9 100644
--- a/pkgs/tools/graphics/gnuplot/default.nix
+++ b/pkgs/tools/graphics/gnuplot/default.nix
@@ -21,11 +21,11 @@ let
 in
 (if withQt then mkDerivation else stdenv.mkDerivation) rec {
   pname = "gnuplot";
-  version = "5.4.4";
+  version = "5.4.5";
 
   src = fetchurl {
     url = "mirror://sourceforge/gnuplot/${pname}-${version}.tar.gz";
-    sha256 = "sha256-NyMAt4Z/WzU4sl/F0Kx3NK9uP+DSArbbkm5DaZE/CQI=";
+    sha256 = "sha256-ZvZ5EV3TBVnhEEmPyU2SaUnU03C0mZoELnJLjpEO5Hg=";
   };
 
   nativeBuildInputs = [ makeWrapper pkg-config texinfo ] ++ lib.optional withQt qttools;