Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

gleam: 1.0.0 -> 1.1.0

+3 -3
+3 -3
pkgs/development/compilers/gleam/default.nix
··· 12 12 13 13 rustPlatform.buildRustPackage rec { 14 14 pname = "gleam"; 15 - version = "1.0.0"; 15 + version = "1.1.0"; 16 16 17 17 src = fetchFromGitHub { 18 18 owner = "gleam-lang"; 19 19 repo = pname; 20 20 rev = "refs/tags/v${version}"; 21 - hash = "sha256-gPlRihwK+J7s1SeymfVdVo/KIV+eEqxlLVOgsDWW9yo"; 21 + hash = "sha256-3DlsqUBAKF3zgiS26YQY1MzymLg9GnVzH1HMpbYv5Dc="; 22 22 }; 23 23 24 24 nativeBuildInputs = [ git pkg-config ]; ··· 26 26 buildInputs = [ openssl ] ++ 27 27 lib.optionals stdenv.isDarwin [ Security SystemConfiguration ]; 28 28 29 - cargoHash = "sha256-ouu4Y1085dGSM7kGIWE+hBde6ZUOA1fO0AcHYXPOWzo="; 29 + cargoHash = "sha256-KROGDBOsx1WTzv7IhJ3WWLJJ9zvrmZI5poJCr2tFcLY="; 30 30 31 31 passthru.updateScript = nix-update-script { }; 32 32