nixpkgs/pkgs/development/compilers/crystal/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

287 lines
8.6 KiB
Nix
Raw Normal View History

2020-11-16 19:32:03 +00:00
{ stdenv
, callPackage
, fetchFromGitHub
, fetchurl
, fetchpatch
2020-11-16 19:32:03 +00:00
, lib
, substituteAll
2021-02-11 03:38:21 +00:00
# Dependencies
2020-11-16 19:32:03 +00:00
, boehmgc
, coreutils
, git
, gmp
, hostname
, libatomic_ops
2020-11-16 19:32:03 +00:00
, libevent
, libiconv
, libxml2
, libyaml
2022-10-11 11:41:41 +00:00
, libffi
2020-11-16 19:32:03 +00:00
, llvmPackages
, makeWrapper
, openssl
2023-04-18 13:58:14 +00:00
, pcre2
2020-11-16 19:32:03 +00:00
, pcre
, pkg-config
2020-11-16 19:32:03 +00:00
, readline
, tzdata
, which
, zlib
}:
2019-02-25 04:36:42 +00:00
# We need to keep around at least the latest version released with a stable
# NixOS
let
archs = {
2021-02-11 03:38:21 +00:00
x86_64-linux = "linux-x86_64";
i686-linux = "linux-i686";
2022-10-11 11:41:41 +00:00
x86_64-darwin = "darwin-universal";
aarch64-darwin = "darwin-universal";
aarch64-linux = "linux-aarch64";
2019-02-25 04:36:42 +00:00
};
2019-08-13 21:52:01 +00:00
arch = archs.${stdenv.system} or (throw "system ${stdenv.system} not supported");
isAarch64Darwin = stdenv.system == "aarch64-darwin";
nativeCheckInputs = [ git gmp openssl readline libxml2 libyaml libffi ];
binaryUrl = version: rel:
if arch == archs.aarch64-linux then
"https://dev.alpinelinux.org/archive/crystal/crystal-${version}-aarch64-alpine-linux-musl.tar.gz"
else if arch == archs.x86_64-darwin && lib.versionOlder version "1.2.0" then
"https://github.com/crystal-lang/crystal/releases/download/${version}/crystal-${version}-${toString rel}-darwin-x86_64.tar.gz"
else
"https://github.com/crystal-lang/crystal/releases/download/${version}/crystal-${version}-${toString rel}-${arch}.tar.gz";
2019-02-25 04:36:42 +00:00
genericBinary = { version, sha256s, rel ? 1 }:
2021-02-11 03:38:21 +00:00
stdenv.mkDerivation rec {
pname = "crystal-binary";
inherit version;
src = fetchurl {
url = binaryUrl version rel;
2021-02-11 03:38:21 +00:00
sha256 = sha256s.${stdenv.system};
};
buildCommand = ''
mkdir -p $out
tar --strip-components=1 -C $out -xf ${src}
patchShebangs $out/bin/crystal
2021-02-11 03:38:21 +00:00
'';
2022-11-12 10:32:28 +00:00
meta.platforms = lib.attrNames sha256s;
};
commonBuildInputs = extraBuildInputs: [
2021-02-11 03:38:21 +00:00
boehmgc
2023-04-18 13:58:14 +00:00
pcre2
2021-02-11 03:38:21 +00:00
libevent
libyaml
zlib
libxml2
openssl
] ++ extraBuildInputs
2021-02-11 03:38:21 +00:00
++ lib.optionals stdenv.isDarwin [ libiconv ];
2020-11-16 19:32:03 +00:00
generic = (
{ version
, sha256
, binary
, doCheck ? true
2021-02-11 03:38:21 +00:00
, extraBuildInputs ? [ ]
, buildFlags ? [ "all" "docs" "release=1"]
2020-11-16 19:32:03 +00:00
}:
2021-02-11 03:38:21 +00:00
lib.fix (compiler: stdenv.mkDerivation {
pname = "crystal";
inherit buildFlags doCheck version;
2020-11-16 19:32:03 +00:00
2021-02-11 03:38:21 +00:00
src = fetchFromGitHub {
owner = "crystal-lang";
repo = "crystal";
rev = version;
inherit sha256;
};
2020-11-16 19:32:03 +00:00
patches = [
(substituteAll {
src = ./tzdata.patch;
inherit tzdata;
})
]
++ lib.optionals (lib.versionOlder version "1.2.0") [
# add support for DWARF5 debuginfo, fixes builds on recent compilers
# the PR is 8 commits from 2019, so just fetch the whole thing
# and hope it doesn't change
(fetchpatch {
url = "https://github.com/crystal-lang/crystal/pull/11399.patch";
sha256 = "sha256-CjNpkQQ2UREADmlyLUt7zbhjXf0rTjFhNbFYLwJKkc8=";
})
];
2021-02-11 03:38:21 +00:00
outputs = [ "out" "lib" "bin" ];
2021-02-11 03:38:21 +00:00
postPatch = ''
export TMP=$(mktemp -d)
export HOME=$TMP
2022-10-11 11:41:41 +00:00
export TMPDIR=$TMP
mkdir -p $HOME/test
2021-02-11 03:38:21 +00:00
# Add dependency of crystal to docs to avoid issue on flag changes between releases
# https://github.com/crystal-lang/crystal/pull/8792#issuecomment-614004782
substituteInPlace Makefile \
--replace 'docs: ## Generate standard library documentation' 'docs: crystal ## Generate standard library documentation'
mkdir -p $TMP/crystal
2021-02-11 03:38:21 +00:00
substituteInPlace spec/std/file_spec.cr \
--replace '/bin/ls' '${coreutils}/bin/ls' \
--replace '/usr/share' "$TMP/crystal" \
--replace '/usr' "$TMP" \
--replace '/tmp' "$TMP"
2021-02-11 03:38:21 +00:00
substituteInPlace spec/std/process_spec.cr \
--replace '/bin/cat' '${coreutils}/bin/cat' \
--replace '/bin/ls' '${coreutils}/bin/ls' \
--replace '/usr/bin/env' '${coreutils}/bin/env' \
--replace '"env"' '"${coreutils}/bin/env"' \
--replace '/usr' "$TMP" \
--replace '/tmp' "$TMP"
2020-11-16 19:32:03 +00:00
2021-02-11 03:38:21 +00:00
substituteInPlace spec/std/system_spec.cr \
--replace '`hostname`' '`${hostname}/bin/hostname`'
2020-11-16 19:32:03 +00:00
2021-02-11 03:38:21 +00:00
# See https://github.com/crystal-lang/crystal/issues/8629
substituteInPlace spec/std/socket/udp_socket_spec.cr \
--replace 'it "joins and transmits to multicast groups"' 'pending "joins and transmits to multicast groups"'
2022-12-18 16:42:51 +00:00
'' + lib.optionalString (stdenv.isDarwin && lib.versionAtLeast version "1.3.0" && lib.versionOlder version "1.7.0") ''
# See https://github.com/NixOS/nixpkgs/pull/195606#issuecomment-1356491277
substituteInPlace spec/compiler/loader/unix_spec.cr \
--replace 'it "parses file paths"' 'pending "parses file paths"'
'';
2020-11-16 19:32:03 +00:00
# Defaults are 4
preBuild = ''
export CRYSTAL_WORKERS=$NIX_BUILD_CORES
export threads=$NIX_BUILD_CORES
export CRYSTAL_CACHE_DIR=$TMP
2022-12-18 16:42:51 +00:00
export MACOSX_DEPLOYMENT_TARGET=10.11
2021-02-11 03:38:21 +00:00
'';
2020-11-16 19:32:03 +00:00
2022-05-10 02:19:21 +00:00
strictDeps = true;
2021-02-11 03:38:21 +00:00
nativeBuildInputs = [ binary makeWrapper which pkg-config llvmPackages.llvm ];
2022-05-10 02:19:21 +00:00
buildInputs = commonBuildInputs extraBuildInputs;
2020-11-16 19:32:03 +00:00
2021-02-11 03:38:21 +00:00
makeFlags = [
"CRYSTAL_CONFIG_VERSION=${version}"
2022-10-11 11:41:41 +00:00
"progress=1"
2021-02-11 03:38:21 +00:00
];
2020-11-16 19:32:03 +00:00
2021-05-07 21:29:14 +00:00
LLVM_CONFIG = "${llvmPackages.llvm.dev}/bin/llvm-config";
2020-11-16 19:32:03 +00:00
2021-02-11 03:38:21 +00:00
FLAGS = [
"--single-module" # needed for deterministic builds
] ++ lib.optionals (lib.versionAtLeast version "1.3.0" && lib.versionOlder version "1.6.1") [
# ffi is only used by the interpreter and its spec are broken on < 1.6.1
"-Dwithout_ffi"
2021-02-11 03:38:21 +00:00
];
2020-11-16 19:32:03 +00:00
2021-02-11 03:38:21 +00:00
# This makes sure we don't keep depending on the previous version of
# crystal used to build this one.
CRYSTAL_LIBRARY_PATH = "${placeholder "lib"}/crystal";
2020-11-16 19:32:03 +00:00
2021-02-11 03:38:21 +00:00
# We *have* to add `which` to the PATH or crystal is unable to build
# stuff later if which is not available.
installPhase = ''
runHook preInstall
2020-11-16 19:32:03 +00:00
2021-02-11 03:38:21 +00:00
install -Dm755 .build/crystal $bin/bin/crystal
wrapProgram $bin/bin/crystal \
--suffix PATH : ${lib.makeBinPath [ pkg-config llvmPackages.clang which ]} \
--suffix CRYSTAL_PATH : lib:$lib/crystal \
--suffix CRYSTAL_LIBRARY_PATH : ${
lib.makeLibraryPath (commonBuildInputs extraBuildInputs)
}
install -dm755 $lib/crystal
cp -r src/* $lib/crystal/
2020-11-16 19:32:03 +00:00
2021-02-11 03:38:21 +00:00
install -dm755 $out/share/doc/crystal/api
cp -r docs/* $out/share/doc/crystal/api/
cp -r samples $out/share/doc/crystal/
2020-04-17 15:05:01 +00:00
2021-02-11 03:38:21 +00:00
install -Dm644 etc/completion.bash $out/share/bash-completion/completions/crystal
install -Dm644 etc/completion.zsh $out/share/zsh/site-functions/_crystal
2021-02-11 03:38:21 +00:00
install -Dm644 man/crystal.1 $out/share/man/man1/crystal.1
2021-02-11 03:38:21 +00:00
install -Dm644 -t $out/share/licenses/crystal LICENSE README.md
2021-02-11 03:38:21 +00:00
mkdir -p $out
ln -s $bin/bin $out/bin
ln -s $lib $out/lib
2021-02-11 03:38:21 +00:00
runHook postInstall
'';
2021-02-11 03:38:21 +00:00
enableParallelBuilding = true;
2021-02-11 03:38:21 +00:00
dontStrip = true;
2021-02-11 03:38:21 +00:00
checkTarget = "compiler_spec";
2021-02-11 03:38:21 +00:00
preCheck = ''
export LIBRARY_PATH=${lib.makeLibraryPath nativeCheckInputs}:$LIBRARY_PATH
export PATH=${lib.makeBinPath nativeCheckInputs}:$PATH
2021-02-11 03:38:21 +00:00
'';
2022-10-11 11:41:41 +00:00
passthru.buildBinary = binary;
2021-02-11 03:38:21 +00:00
passthru.buildCrystalPackage = callPackage ./build-package.nix {
crystal = compiler;
};
2019-08-26 16:22:55 +00:00
2021-02-11 03:38:21 +00:00
meta = with lib; {
2022-11-12 10:32:28 +00:00
inherit (binary.meta) platforms;
2021-02-11 03:38:21 +00:00
description = "A compiled language with Ruby like syntax and type inference";
homepage = "https://crystal-lang.org/";
license = licenses.asl20;
2022-04-21 18:00:13 +00:00
maintainers = with maintainers; [ david50407 manveru peterhoeg ];
2021-02-11 03:38:21 +00:00
};
})
2020-11-16 19:32:03 +00:00
);
2021-02-11 03:38:21 +00:00
in
rec {
binaryCrystal_1_2 = genericBinary {
version = "1.2.2";
sha256s = {
x86_64-linux = "sha256-sW5nhihW/6Dkq95i3vJNWs2D1CtQhujhxVbgQCAas6E=";
aarch64-darwin = "sha256-4VB4yYGl1/YeYSsHOZq7fdeQ8IQMfloAPhEU0iKrvxs=";
x86_64-darwin = "sha256-4VB4yYGl1/YeYSsHOZq7fdeQ8IQMfloAPhEU0iKrvxs=";
aarch64-linux = "sha256-QgPKUDFyodqY1+b85AybSpbbr0RmfISdNpB08Wf34jo=";
};
};
crystal_1_2 = generic {
version = "1.2.2";
sha256 = "sha256-nyOXhsutVBRdtJlJHe2dALl//BUXD1JeeQPgHU4SwiU=";
binary = binaryCrystal_1_2;
2023-04-18 13:58:14 +00:00
extraBuildInputs = [ libatomic_ops pcre ];
};
2023-01-09 20:41:18 +00:00
crystal_1_7 = generic {
2023-04-09 15:07:40 +00:00
version = "1.7.3";
sha256 = "sha256-ULhLGHRIZbsKhaMvNhc+W74BwNgfEjHcMnVNApWY+EE=";
binary = binaryCrystal_1_2;
2023-04-18 13:58:14 +00:00
extraBuildInputs = [ pcre ];
2021-10-13 21:22:48 +00:00
};
2023-04-15 23:25:42 +00:00
crystal_1_8 = generic {
version = "1.8.0";
sha256 = "sha256-oTvBKrfDkrpJg4gaOVrrKWfsqZC+Z9Lp/jt4ye+Iw/M=";
binary = binaryCrystal_1_2;
};
crystal = crystal_1_8;
}