crystal: 1.8 -> 1.9

This commit is contained in:
Donovan Glover 2023-07-12 17:50:13 -04:00
parent 4a729ce4b1
commit 5975c5a8a7
No known key found for this signature in database
GPG key ID: EA7408A77AE1BE65
2 changed files with 9 additions and 2 deletions

View file

@ -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;
}

View file

@ -15144,6 +15144,7 @@ with pkgs;
llvmPackages = llvmPackages_15;
stdenv = if stdenv.isDarwin then darwin.apple_sdk_11_0.stdenv else stdenv;
})
crystal_1_9
crystal_1_8
crystal;