0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-13 13:40:28 +03:00

gleam: 1.10.0 -> 1.11.0 (#407394)

This commit is contained in:
Adam C. Stephens 2025-06-02 23:16:05 -04:00 committed by GitHub
commit 04cfe8c59f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -15,16 +15,16 @@
rustPlatform.buildRustPackage (finalAttrs: {
pname = "gleam";
version = "1.10.0";
version = "1.11.0";
src = fetchFromGitHub {
owner = "gleam-lang";
repo = "gleam";
tag = "v${finalAttrs.version}";
hash = "sha256-0qK9dWkKnoXbIIBMN3p5noPEke/bgC8Bjtmf6lwtyr4=";
hash = "sha256-oxzFAqPZ+ZHd/+GwofDg0gA4NIFYWi2v8fOjMn8ixSU=";
};
cargoHash = "sha256-EoRu8p6cUe1li54nVUkf+3qywIsDXh4ptIVLluJ3eFs=";
cargoHash = "sha256-9kk7w85imYIhywBuAgJS8wYAIEM3hXoHymGgMMmrgnI=";
nativeBuildInputs = [
git
@ -53,7 +53,10 @@ rustPlatform.buildRustPackage (finalAttrs: {
homepage = "https://gleam.run/";
changelog = "https://github.com/gleam-lang/gleam/blob/v${finalAttrs.version}/CHANGELOG.md";
license = lib.licenses.asl20;
maintainers = [ lib.maintainers.philtaken ];
maintainers = with lib.maintainers; [
philtaken
llakala
];
teams = [ lib.teams.beam ];
};
})