cyclone-scheme: 0.34.0 -> 0.36.0 (#443104)

This commit is contained in:
Ben Siraphob
2025-09-20 14:37:18 +00:00
committed by GitHub
+8 -6
View File
@@ -7,7 +7,7 @@
}:
let
version = "0.34.0";
version = "0.36.0";
bootstrap = stdenv.mkDerivation {
pname = "cyclone-bootstrap";
inherit version;
@@ -16,7 +16,7 @@ let
owner = "justinethier";
repo = "cyclone-bootstrap";
rev = "v${version}";
sha256 = "sha256-kJBPb0Ej32HveY/vdGpH2gyxSwq8Xq7muneFIw3Y7hM=";
sha256 = "sha256-8WK4rsLK3gi9a6PKFaT3KRK256rEDTTO6QvqYrOtYDs=";
};
enableParallelBuilding = true;
@@ -36,7 +36,7 @@ stdenv.mkDerivation {
owner = "justinethier";
repo = "cyclone";
rev = "v${version}";
sha256 = "sha256-4U/uOTbFpPTC9BmO6Wkhy4PY8UCFVt5eHSGqrOlKT/U=";
sha256 = "sha256-5h8jZ8EBgiLLYH/j3p7CqsQGXHhjGtQfOnxPbFnT5WM=";
};
enableParallelBuilding = true;
@@ -47,10 +47,12 @@ stdenv.mkDerivation {
makeFlags = [ "PREFIX=${placeholder "out"}" ];
meta = with lib; {
meta = {
homepage = "https://justinethier.github.io/cyclone/";
description = "Brand-new compiler that allows practical application development using R7RS Scheme";
license = licenses.mit;
maintainers = with maintainers; [ siraben ];
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ siraben ];
platforms = lib.platforms.unix;
broken = stdenv.hostPlatform.isDarwin;
};
}