summary refs log tree commit diff
path: root/pkgs/development/interpreters/racket/default.nix
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2023-08-16 04:20:00 +0000
committerMario Rodas <marsam@users.noreply.github.com>2023-08-16 04:20:00 +0000
commitb35fda3793153facd67244adf62c71931d51d815 (patch)
tree566e1ee47f54cd24a2456062b686f0c78e4de785 /pkgs/development/interpreters/racket/default.nix
parent6ee965697c720e68a487ec35b0fd98f5916c8f9c (diff)
downloadnixpkgs-b35fda3793153facd67244adf62c71931d51d815.tar
nixpkgs-b35fda3793153facd67244adf62c71931d51d815.tar.gz
nixpkgs-b35fda3793153facd67244adf62c71931d51d815.tar.bz2
nixpkgs-b35fda3793153facd67244adf62c71931d51d815.tar.lz
nixpkgs-b35fda3793153facd67244adf62c71931d51d815.tar.xz
nixpkgs-b35fda3793153facd67244adf62c71931d51d815.tar.zst
nixpkgs-b35fda3793153facd67244adf62c71931d51d815.zip
racket,racket-minimal: 8.9 -> 8.10
Changelog: https://github.com/racket/racket/releases/tag/v8.10
Diffstat (limited to 'pkgs/development/interpreters/racket/default.nix')
-rw-r--r--pkgs/development/interpreters/racket/default.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/development/interpreters/racket/default.nix b/pkgs/development/interpreters/racket/default.nix
index eac454d3900..9b0bb014e1e 100644
--- a/pkgs/development/interpreters/racket/default.nix
+++ b/pkgs/development/interpreters/racket/default.nix
@@ -50,7 +50,7 @@ in
 
 stdenv.mkDerivation rec {
   pname = "racket";
-  version = "8.9"; # always change at once with ./minimal.nix
+  version = "8.10"; # always change at once with ./minimal.nix
 
   src = (lib.makeOverridable ({ name, sha256 }:
     fetchurl {
@@ -59,7 +59,7 @@ stdenv.mkDerivation rec {
     }
   )) {
     name = "${pname}-${version}";
-    sha256 = "sha256-OuIl6E4Rn0zRpH8bFhM1aPx9NcKQxQVJVWbZ3M78UiQ=";
+    sha256 = "sha256-Dklj2iwX5/bVdCi9odz2Ttp0N+Lya7bMSLR/QXo9k6M=";
   };
 
   FONTCONFIG_FILE = fontsConf;
@@ -149,6 +149,7 @@ stdenv.mkDerivation rec {
       GUIs and charts.
     '';
     homepage = "https://racket-lang.org/";
+    changelog = "https://github.com/racket/racket/releases/tag/v${version}";
     license = with licenses; [ asl20 /* or */ mit ];
     maintainers = with maintainers; [ henrytill vrthra ];
     platforms = [ "x86_64-darwin" "x86_64-linux" "aarch64-linux" "aarch64-darwin" ];