0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-14 06:00:33 +03:00

gleam: 1.8.1 -> 1.9.1 (#388476)

This commit is contained in:
Yt 2025-03-10 17:57:26 -04:00 committed by GitHub
commit 4273cbbf22
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -7,6 +7,9 @@
pkg-config,
openssl,
erlang,
nodejs,
bun,
deno,
Security,
nix-update-script,
SystemConfiguration,
@ -14,24 +17,27 @@
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
@ -39,7 +45,12 @@ rustPlatform.buildRustPackage rec {
];
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 { };