cyclone-scheme: 0.34.0 -> 0.36.0, mark broken on darwin

+8 -6
+8 -6
pkgs/by-name/cy/cyclone-scheme/package.nix
··· 7 7 }: 8 8 9 9 let 10 - version = "0.34.0"; 10 + version = "0.36.0"; 11 11 bootstrap = stdenv.mkDerivation { 12 12 pname = "cyclone-bootstrap"; 13 13 inherit version; ··· 16 16 owner = "justinethier"; 17 17 repo = "cyclone-bootstrap"; 18 18 rev = "v${version}"; 19 - sha256 = "sha256-kJBPb0Ej32HveY/vdGpH2gyxSwq8Xq7muneFIw3Y7hM="; 19 + sha256 = "sha256-8WK4rsLK3gi9a6PKFaT3KRK256rEDTTO6QvqYrOtYDs="; 20 20 }; 21 21 22 22 enableParallelBuilding = true; ··· 36 36 owner = "justinethier"; 37 37 repo = "cyclone"; 38 38 rev = "v${version}"; 39 - sha256 = "sha256-4U/uOTbFpPTC9BmO6Wkhy4PY8UCFVt5eHSGqrOlKT/U="; 39 + sha256 = "sha256-5h8jZ8EBgiLLYH/j3p7CqsQGXHhjGtQfOnxPbFnT5WM="; 40 40 }; 41 41 42 42 enableParallelBuilding = true; ··· 47 47 48 48 makeFlags = [ "PREFIX=${placeholder "out"}" ]; 49 49 50 - meta = with lib; { 50 + meta = { 51 51 homepage = "https://justinethier.github.io/cyclone/"; 52 52 description = "Brand-new compiler that allows practical application development using R7RS Scheme"; 53 - license = licenses.mit; 54 - maintainers = with maintainers; [ siraben ]; 53 + license = lib.licenses.mit; 54 + maintainers = with lib.maintainers; [ siraben ]; 55 + platforms = lib.platforms.unix; 56 + broken = stdenv.hostPlatform.isDarwin; 55 57 }; 56 58 }