tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
cyclone-scheme: 0.34.0 -> 0.36.0, mark broken on darwin
Ben Siraphob
5 months ago
63a7dae8
1fb62b80
+8
-6
1 changed file
expand all
collapse all
unified
split
pkgs
by-name
cy
cyclone-scheme
package.nix
+8
-6
pkgs/by-name/cy/cyclone-scheme/package.nix
···
7
7
}:
8
8
9
9
let
10
10
-
version = "0.34.0";
10
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
19
-
sha256 = "sha256-kJBPb0Ej32HveY/vdGpH2gyxSwq8Xq7muneFIw3Y7hM=";
19
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
39
-
sha256 = "sha256-4U/uOTbFpPTC9BmO6Wkhy4PY8UCFVt5eHSGqrOlKT/U=";
39
39
+
sha256 = "sha256-5h8jZ8EBgiLLYH/j3p7CqsQGXHhjGtQfOnxPbFnT5WM=";
40
40
};
41
41
42
42
enableParallelBuilding = true;
···
47
47
48
48
makeFlags = [ "PREFIX=${placeholder "out"}" ];
49
49
50
50
-
meta = with lib; {
50
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
53
-
license = licenses.mit;
54
54
-
maintainers = with maintainers; [ siraben ];
53
53
+
license = lib.licenses.mit;
54
54
+
maintainers = with lib.maintainers; [ siraben ];
55
55
+
platforms = lib.platforms.unix;
56
56
+
broken = stdenv.hostPlatform.isDarwin;
55
57
};
56
58
}