lunarml: 0.2.0 → 0.2.1 (#355379)

This commit is contained in:
Austin Horstman 2024-11-15 09:47:41 -06:00 committed by GitHub
commit 2d088b482e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -5,19 +5,16 @@
, lua5_3
}:
let
version = "0.2.0";
in
stdenvNoCC.mkDerivation {
inherit version;
stdenvNoCC.mkDerivation (finalAttrs: {
version = "0.2.1";
pname = "lunarml";
src = fetchFromGitHub {
owner = "minoki";
repo = "LunarML";
rev = "refs/tags/v${version}";
hash = "sha256-w0DWvFegAdpJTab60cDLA+tketmMYeKApx1rCNr27i4=";
rev = "refs/tags/v${finalAttrs.version}";
hash = "sha256-wNcsvtIR/MbvwAIhybc7zzbS+RgfwndQ1jdDVdte+44=";
};
outputs = [ "out" "doc" ];
@ -55,4 +52,4 @@ stdenvNoCC.mkDerivation {
maintainers = with lib.maintainers; [ toastal ratsclub ];
platforms = mlton.meta.platforms;
};
}
})