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