about summary refs log tree commit diff
path: root/pkgs/development/interpreters/lune
diff options
context:
space:
mode:
authorwackbyte <wackbyte@pm.me>2024-01-14 16:27:00 -0500
committerwackbyte <wackbyte@pm.me>2024-01-14 16:27:00 -0500
commit4fef23e1dc60341fda7799c5b6385eab08bd50d6 (patch)
tree9b84aca60262b46dbcaa6d406e225e47aa793af8 /pkgs/development/interpreters/lune
parent3763c9f08f7838b80bf9726782ec84a8e9f27d33 (diff)
lune: 0.7.11 -> 0.8.0
Diffstat (limited to 'pkgs/development/interpreters/lune')
-rw-r--r--pkgs/development/interpreters/lune/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/development/interpreters/lune/default.nix b/pkgs/development/interpreters/lune/default.nix
index cb6f532e2bc96..0659647ff7ba9 100644
--- a/pkgs/development/interpreters/lune/default.nix
+++ b/pkgs/development/interpreters/lune/default.nix
@@ -8,17 +8,17 @@
 
 rustPlatform.buildRustPackage rec {
   pname = "lune";
-  version = "0.7.11";
+  version = "0.8.0";
 
   src = fetchFromGitHub {
     owner = "filiptibell";
     repo = "lune";
     rev = "v${version}";
-    hash = "sha256-5agoAXeO16/CihsgvUHt+pgA+/ph6PualTY6xqDQbeU=";
+    hash = "sha256-ZVETw+GdkrR2V8RrHAWBR+avAuN0158DlJkYBquju8E=";
     fetchSubmodules = true;
   };
 
-  cargoHash = "sha256-kPBPxlsicoFDyOsuJWhvQHDC2uwYQqpd7S+kQPRd8DY=";
+  cargoHash = "sha256-zOjDT8Sn/p3YaG+dWyYxSWUOo11p9/WG3EyNagZRtQQ=";
 
   nativeBuildInputs = [
     pkg-config
@@ -46,8 +46,8 @@ rustPlatform.buildRustPackage rec {
 
   meta = with lib; {
     description = "A standalone Luau script runtime";
-    homepage = "https://github.com/filiptibell/lune";
-    changelog = "https://github.com/filiptibell/lune/blob/${src.rev}/CHANGELOG.md";
+    homepage = "https://github.com/lune-org/lune";
+    changelog = "https://github.com/lune-org/lune/blob/${src.rev}/CHANGELOG.md";
     license = licenses.mpl20;
     maintainers = with maintainers; [ lammermann ];
   };