gleam: 1.8.1 -> 1.9.1 (#388476)

Yt 4273cbbf 85c607e6

Changed files
+15 -4
pkgs
development
compilers
gleam
+15 -4
pkgs/development/compilers/gleam/default.nix
···
pkg-config,
openssl,
erlang,
+
nodejs,
+
bun,
+
deno,
Security,
nix-update-script,
SystemConfiguration,
···
rustPlatform.buildRustPackage rec {
pname = "gleam";
-
version = "1.8.1";
+
version = "1.9.1";
src = fetchFromGitHub {
owner = "gleam-lang";
repo = pname;
tag = "v${version}";
-
hash = "sha256-Qt2VQhbiNNORrGUR5LHeBb0q/EIqPNPz/adljj6xpS4=";
+
hash = "sha256-6vYVUdQST49TNctO9Y/XrRFyJ6hXng85SsO+4JBn1GA=";
};
nativeBuildInputs = [
git
pkg-config
+
erlang
+
nodejs
+
bun
+
deno
];
buildInputs =
[
openssl
-
erlang
]
++ lib.optionals stdenv.hostPlatform.isDarwin [
Security
···
];
useFetchCargoVendor = true;
-
cargoHash = "sha256-7oawxv1s8BJsOxGuADKjf4XqJ/UT+zYOrPQCbQljArM=";
+
cargoHash = "sha256-arVtNxcYDVKRTGe9won6zb30wCxMD6MtsGs25UmOPjM=";
+
+
checkFlags = [
+
# Makes a network request
+
"--skip=tests::echo::echo_dict"
+
];
passthru.updateScript = nix-update-script { };