summaryrefslogtreecommitdiffstats
path: root/pkgs/development/compilers/crystal
diff options
context:
space:
mode:
authorDonovan Glover <donovan@dglover.co>2023-07-12 17:50:13 -0400
committerDonovan Glover <donovan@dglover.co>2023-07-12 17:52:24 -0400
commit5975c5a8a73a8441030426634e20524418060751 (patch)
tree602e2172a8aeb20592f768386e57eef5f1b1eaa1 /pkgs/development/compilers/crystal
parent4a729ce4b1fe5ec4fffc71c67c96aa5184ebb462 (diff)
crystal: 1.8 -> 1.9
Diffstat (limited to 'pkgs/development/compilers/crystal')
-rw-r--r--pkgs/development/compilers/crystal/default.nix10
1 files changed, 8 insertions, 2 deletions
diff --git a/pkgs/development/compilers/crystal/default.nix b/pkgs/development/compilers/crystal/default.nix
index 7629c0e74ba4..8fe6748c08f6 100644
--- a/pkgs/development/compilers/crystal/default.nix
+++ b/pkgs/development/compilers/crystal/default.nix
@@ -242,7 +242,7 @@ let
description = "A compiled language with Ruby like syntax and type inference";
homepage = "https://crystal-lang.org/";
license = licenses.asl20;
- maintainers = with maintainers; [ david50407 manveru peterhoeg ];
+ maintainers = with maintainers; [ david50407 manveru peterhoeg donovanglover ];
};
})
);
@@ -278,5 +278,11 @@ rec {
binary = binaryCrystal_1_2;
};
- crystal = crystal_1_8;
+ crystal_1_9 = generic {
+ version = "1.9.0";
+ sha256 = "sha256-FFpAL1U8WtfwDCLaUP+axSnJlGaKp/jzBs54rit9T2A=";
+ binary = binaryCrystal_1_2;
+ };
+
+ crystal = crystal_1_9;
}