summary refs log tree commit diff
diff options
context:
space:
mode:
authorK900 <me@0upti.me>2023-11-05 16:27:25 +0300
committerGitHub <noreply@github.com>2023-11-05 16:27:25 +0300
commit0a41eb1276460d25b3ce7a4e44b7b75a3f0dac5c (patch)
treebb4517484c8bd00517ca17633d8a70728ed3e6d0
parent5eda4619591bc659942cd03d1bb3b04925bb1435 (diff)
parent918618ee66b3f1b0a1f4e89be4a9821a947c1199 (diff)
downloadnixpkgs-0a41eb1276460d25b3ce7a4e44b7b75a3f0dac5c.tar
nixpkgs-0a41eb1276460d25b3ce7a4e44b7b75a3f0dac5c.tar.gz
nixpkgs-0a41eb1276460d25b3ce7a4e44b7b75a3f0dac5c.tar.bz2
nixpkgs-0a41eb1276460d25b3ce7a4e44b7b75a3f0dac5c.tar.lz
nixpkgs-0a41eb1276460d25b3ce7a4e44b7b75a3f0dac5c.tar.xz
nixpkgs-0a41eb1276460d25b3ce7a4e44b7b75a3f0dac5c.tar.zst
nixpkgs-0a41eb1276460d25b3ce7a4e44b7b75a3f0dac5c.zip
Merge pull request #257551 from toastal/v0.0.20230924
lunarml: unstable-2023-09-21 → 0.0.20230924
-rw-r--r--pkgs/development/compilers/lunarml/default.nix11
1 files changed, 7 insertions, 4 deletions
diff --git a/pkgs/development/compilers/lunarml/default.nix b/pkgs/development/compilers/lunarml/default.nix
index 104b7ce688b..35ebea77782 100644
--- a/pkgs/development/compilers/lunarml/default.nix
+++ b/pkgs/development/compilers/lunarml/default.nix
@@ -5,16 +5,19 @@
 , lua5_3
 }:
 
+let
+  version = "0.0.20230924";
+in
 stdenvNoCC.mkDerivation {
-  pname = "lunarml";
+  inherit version;
 
-  version = "unstable-2023-09-21";
+  pname = "lunarml";
 
   src = fetchFromGitHub {
     owner = "minoki";
     repo = "LunarML";
-    rev = "c6e23ae68149bda550ddb75c0df9f422aa379b3a";
-    sha256 = "DY4gOCXfGV1OVdGXd6GGvbHlQdWWxMg5TZzkceeOu9o=";
+    rev = "refs/tags/v${version}";
+    sha256 = "QN5iJEpJJZZuUfY/z57bpOQHDU31ecmJPWQtkXsLmDg=";
   };
 
   outputs = [ "out" "doc" ];