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

Changed files
+8 -6
pkgs
by-name
cy
cyclone-scheme
+8 -6
pkgs/by-name/cy/cyclone-scheme/package.nix
···
}:
let
-
version = "0.34.0";
+
version = "0.36.0";
bootstrap = stdenv.mkDerivation {
pname = "cyclone-bootstrap";
inherit version;
···
owner = "justinethier";
repo = "cyclone-bootstrap";
rev = "v${version}";
-
sha256 = "sha256-kJBPb0Ej32HveY/vdGpH2gyxSwq8Xq7muneFIw3Y7hM=";
+
sha256 = "sha256-8WK4rsLK3gi9a6PKFaT3KRK256rEDTTO6QvqYrOtYDs=";
};
enableParallelBuilding = true;
···
owner = "justinethier";
repo = "cyclone";
rev = "v${version}";
-
sha256 = "sha256-4U/uOTbFpPTC9BmO6Wkhy4PY8UCFVt5eHSGqrOlKT/U=";
+
sha256 = "sha256-5h8jZ8EBgiLLYH/j3p7CqsQGXHhjGtQfOnxPbFnT5WM=";
};
enableParallelBuilding = true;
···
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;
};
}