forked from crystal-lang/crystal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
shell.nix
151 lines (126 loc) · 4.63 KB
/
shell.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
# This nix-shell script can be used to get a complete development environment
# for the Crystal compiler.
#
# You can choose which llvm version use and, on Linux, choose to use musl.
#
# $ nix-shell --pure
# $ nix-shell --pure --arg llvm 10
# $ nix-shell --pure --arg llvm 10 --arg musl true
# $ nix-shell --pure --arg llvm 9
# $ nix-shell --pure --arg llvm 9 --argstr system i686-linux
# ...
# $ nix-shell --pure --arg llvm 6
#
# If needed, you can use https://app.cachix.org/cache/crystal-ci to avoid building
# packages that are not available in Nix directly. This is mostly useful for musl.
#
# $ nix-env -iA cachix -f https://cachix.org/api/v1/install
# $ cachix use crystal-ci
# $ nix-shell --pure --arg musl true
#
{llvm ? 10, musl ? false, system ? builtins.currentSystem}:
let
nixpkgs = import (builtins.fetchTarball {
name = "nixpkgs-20.03";
url = "https://github.com/NixOS/nixpkgs/archive/2d580cd2793a7b5f4b8b6b88fb2ccec700ee1ae6.tar.gz";
sha256 = "1nbanzrir1y0yi2mv70h60sars9scwmm0hsxnify2ldpczir9n37";
}) {
inherit system;
};
pkgs = if musl then nixpkgs.pkgsMusl else nixpkgs;
genericBinary = { url, sha256 }:
pkgs.stdenv.mkDerivation rec {
name = "crystal-binary";
src = builtins.fetchTarball { inherit url sha256; };
# Extract only the compiler binary
buildCommand = ''
mkdir -p $out/bin
# Darwin packages use embedded/bin/crystal
[ ! -f "${src}/embedded/bin/crystal" ] || cp ${src}/embedded/bin/crystal $out/bin/
# Linux packages use lib/crystal/bin/crystal
[ ! -f "${src}/lib/crystal/bin/crystal" ] || cp ${src}/lib/crystal/bin/crystal $out/bin/
'';
};
# Hashes obtained using `nix-prefetch-url --unpack <url>`
latestCrystalBinary = genericBinary ({
x86_64-darwin = {
url = "https://github.com/crystal-lang/crystal/releases/download/0.35.1/crystal-0.35.1-1-darwin-x86_64.tar.gz";
sha256 = "sha256:0gpn42xh372hw2bqfgxc9wibpbam8gn7gx3p1b8p9adydjg0zxfm";
};
x86_64-linux = {
url = "https://github.com/crystal-lang/crystal/releases/download/0.35.1/crystal-0.35.1-1-linux-x86_64.tar.gz";
sha256 = "sha256:077pby4ylf0z831gg0hbiwxcq3g0yl0cdlybirgg8rv24a2sa7zh";
};
i686-linux = {
url = "https://github.com/crystal-lang/crystal/releases/download/0.35.1/crystal-0.35.1-1-linux-i686.tar.gz";
sha256 = "sha256:0nfgxjndfslyacicjy4303pvvqfg74v5fnpr4b10ss9rqakmlbgd";
};
}.${pkgs.stdenv.system});
pkgconfig = pkgs.pkgconfig;
llvm_suite = ({
llvm_10 = {
llvm = pkgs.llvm_10;
extra = [ pkgs.lld_10 pkgs.lldb_10 ];
};
llvm_9 = {
llvm = pkgs.llvm_9;
extra = [ ]; # lldb it fails to compile on Darwin
};
llvm_8 = {
llvm = pkgs.llvm_8;
extra = [ ]; # lldb it fails to compile on Darwin
};
llvm_7 = {
llvm = pkgs.llvm;
extra = [ pkgs.lldb ];
};
llvm_6 = {
llvm = pkgs.llvm_6;
extra = [ ]; # lldb it fails to compile on Darwin
};
}."llvm_${toString llvm}");
libatomic_ops = builtins.fetchurl {
url = "https://github.com/ivmai/libatomic_ops/releases/download/v7.6.10/libatomic_ops-7.6.10.tar.gz";
sha256 = "1bwry043f62pc4mgdd37zx3fif19qyrs8f5bw7qxlmkzh5hdyzjq";
};
boehmgc = pkgs.stdenv.mkDerivation rec {
pname = "boehm-gc";
version = "8.0.4";
src = builtins.fetchTarball {
url = "https://github.com/ivmai/bdwgc/releases/download/v${version}/gc-${version}.tar.gz";
sha256 = "16ic5dwfw51r5lcl88vx3qrkg3g2iynblazkri3sl9brnqiyzjk7";
};
patches = [
(pkgs.fetchpatch {
url = "https://github.com/ivmai/bdwgc/commit/5668de71107022a316ee967162bc16c10754b9ce.patch";
sha256 = "02f0rlxl4fsqk1xiq0pabkhwydnmyiqdik2llygkc6ixhxbii8xw";
})
];
postUnpack = ''
mkdir $sourceRoot/libatomic_ops
tar -xzf ${libatomic_ops} -C $sourceRoot/libatomic_ops --strip-components 1
'';
configureFlags = [
"--disable-debug"
"--disable-dependency-tracking"
"--disable-shared"
"--enable-large-config"
];
enableParallelBuilding = true;
};
stdLibDeps = with pkgs; [
boehmgc gmp libevent libiconv libxml2 libyaml openssl pcre zlib
] ++ stdenv.lib.optionals stdenv.isDarwin [ libiconv ];
tools = [ pkgs.hostname pkgs.git llvm_suite.extra ];
in
pkgs.stdenv.mkDerivation rec {
name = "crystal-dev";
buildInputs = tools ++ stdLibDeps ++ [
latestCrystalBinary
pkgconfig
llvm_suite.llvm
];
LLVM_CONFIG = "${llvm_suite.llvm}/bin/llvm-config";
# ld: warning: object file (.../src/ext/libcrystal.a(sigfault.o)) was built for newer OSX version (10.14) than being linked (10.12)
MACOSX_DEPLOYMENT_TARGET = "10.11";
}