Merge pull request #226371 from geopjr-forks/update/crystal

crystal: 1.7 -> 1.8
This commit is contained in:
Weijia Wang 2023-04-19 00:26:48 +03:00 committed by GitHub
commit 3eb57ca945
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 16 additions and 2 deletions

View File

@ -20,6 +20,7 @@
, llvmPackages
, makeWrapper
, openssl
, pcre2
, pcre
, pkg-config
, readline
@ -74,6 +75,7 @@ let
commonBuildInputs = extraBuildInputs: [
boehmgc
pcre
pcre2
libevent
libyaml
zlib
@ -274,5 +276,11 @@ rec {
binary = binaryCrystal_1_2;
};
crystal = crystal_1_7;
crystal_1_8 = generic {
version = "1.8.0";
sha256 = "sha256-oTvBKrfDkrpJg4gaOVrrKWfsqZC+Z9Lp/jt4ye+Iw/M=";
binary = binaryCrystal_1_2;
};
crystal = crystal_1_8;
}

View File

@ -14550,7 +14550,13 @@ with pkgs;
stdenv = if stdenv.isDarwin then darwin.apple_sdk_11_0.stdenv else stdenv;
})
crystal_1_2
crystal_1_7
crystal_1_7;
inherit (callPackages ../development/compilers/crystal {
llvmPackages = llvmPackages_15;
stdenv = if stdenv.isDarwin then darwin.apple_sdk_11_0.stdenv else stdenv;
})
crystal_1_8
crystal;
crystal2nix = callPackage ../development/compilers/crystal2nix { };