forked from crystal-lang/crystal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshell.nix
129 lines (108 loc) · 3.71 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
# 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/1.2.2/crystal-1.2.2-1-darwin-universal.tar.gz";
sha256 = "sha256:1y7bcwl6jybg28sdd9xrgkxbz3ysdqn1jlgapi50avc47h30kgbb";
};
x86_64-linux = {
url = "https://github.com/crystal-lang/crystal/releases/download/1.2.2/crystal-1.2.2-1-linux-x86_64.tar.gz";
sha256 = "sha256:1cxkyq7n2xw6h9c99h28c2ssf3viiw1vigb0w6l2rpnw4f55fbqz";
};
}.${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}");
boehmgc = pkgs.stdenv.mkDerivation rec {
pname = "boehm-gc";
version = "8.2.0";
src = builtins.fetchTarball {
url = "https://github.com/ivmai/bdwgc/releases/download/v${version}/gc-${version}.tar.gz";
sha256 = "0f3m27sfc4wssdvk32vivdg64b04ydw0slxm45zdv23qddrihxq4";
};
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
pkgs.libffi
];
LLVM_CONFIG = "${llvm_suite.llvm}/bin/llvm-config";
MACOSX_DEPLOYMENT_TARGET = "10.11";
}