about summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorYt <raphael@megzari.com>2024-01-18 13:12:57 +0000
committerGitHub <noreply@github.com>2024-01-18 13:12:57 +0000
commited30e67bb0f336090c3ac32b5521d50bbce2738d (patch)
tree0e9115ede9673eb24f984b6d14a7b0b9b6ca930d /pkgs/development
parentc6665829642a8a4b69554d6b1a6414b67fd54e64 (diff)
parentd3899d7b1ee0ce5531a6a8ad9ab8bfe5bae5d783 (diff)
Merge pull request #281633 from Massolari/update/gleam
gleam: 0.33.0 -> 0.34.0
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/compilers/gleam/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/compilers/gleam/default.nix b/pkgs/development/compilers/gleam/default.nix
index ff3fa0de1b725..8571950fef3a5 100644
--- a/pkgs/development/compilers/gleam/default.nix
+++ b/pkgs/development/compilers/gleam/default.nix
@@ -12,13 +12,13 @@
 
 rustPlatform.buildRustPackage rec {
   pname = "gleam";
-  version = "0.33.0";
+  version = "0.34.0";
 
   src = fetchFromGitHub {
     owner = "gleam-lang";
     repo = pname;
     rev = "refs/tags/v${version}";
-    hash = "sha256-fAI4GKdMg2FlNLqXtqAEpmvi63RApRZdQEWPqEf+Dyw=";
+    hash = "sha256-cqJNNSN3x2tr6/i7kXAlvIaU9SfyPWBE4c6twc/p1lY=";
   };
 
   nativeBuildInputs = [ git pkg-config ];
@@ -26,7 +26,7 @@ rustPlatform.buildRustPackage rec {
   buildInputs = [ openssl ] ++
     lib.optionals stdenv.isDarwin [ Security SystemConfiguration ];
 
-  cargoHash = "sha256-Ogjt6lIOvoTPWQhtNFqMgACNrH/27+8JRDlFb//9oUg=";
+  cargoHash = "sha256-mCMfVYbpUik8oc7TLLAXPBmBUchy+quAZLmd9pqCZ7Y=";
 
   passthru.updateScript = nix-update-script { };