Merge pull request #29966 from david50407/patch-1
crystal: 0.23.0 -> 0.23.1
This commit is contained in:
commit
28bc4ef9e1
3 changed files with 44 additions and 50 deletions
|
@ -136,6 +136,7 @@
|
||||||
dancek = "Hannu Hartikainen <hannu.hartikainen@gmail.com>";
|
dancek = "Hannu Hartikainen <hannu.hartikainen@gmail.com>";
|
||||||
danielfullmer = "Daniel Fullmer <danielrf12@gmail.com>";
|
danielfullmer = "Daniel Fullmer <danielrf12@gmail.com>";
|
||||||
dasuxullebt = "Christoph-Simon Senjak <christoph.senjak@googlemail.com>";
|
dasuxullebt = "Christoph-Simon Senjak <christoph.senjak@googlemail.com>";
|
||||||
|
david50407 = "David Kuo <me@davy.tw>";
|
||||||
davidak = "David Kleuker <post@davidak.de>";
|
davidak = "David Kleuker <post@davidak.de>";
|
||||||
davidrusu = "David Rusu <davidrusu.me@gmail.com>";
|
davidrusu = "David Rusu <davidrusu.me@gmail.com>";
|
||||||
davorb = "Davor Babic <davor@davor.se>";
|
davorb = "Davor Babic <davor@davor.se>";
|
||||||
|
|
|
@ -1,81 +1,71 @@
|
||||||
{ stdenv, fetchurl, boehmgc, libatomic_ops, pcre, libevent, libiconv, llvm_4, makeWrapper }:
|
{ stdenv, fetchurl, boehmgc, libatomic_ops, pcre, libevent, libiconv, llvm, makeWrapper }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
version = "0.23.0";
|
name = "crystal-${version}";
|
||||||
name = "crystal-${version}-1";
|
version = "0.23.1";
|
||||||
arch =
|
|
||||||
{
|
|
||||||
"x86_64-linux" = "linux-x86_64";
|
|
||||||
"i686-linux" = "linux-i686";
|
|
||||||
"x86_64-darwin" = "darwin-x86_64";
|
|
||||||
}."${stdenv.system}" or (throw "system ${stdenv.system} not supported");
|
|
||||||
|
|
||||||
prebuiltBinary = fetchurl {
|
|
||||||
url = "https://github.com/crystal-lang/crystal/releases/download/${version}/crystal-${version}-1-${arch}.tar.gz";
|
|
||||||
sha256 =
|
|
||||||
{
|
|
||||||
"x86_64-linux" = "0nhs7swbll8hrk15kmmywngkhij80x62axiskb1gjmiwvzhlh0qx";
|
|
||||||
"i686-linux" = "03xp8d3lqflzzm26lpdn4yavj87qzgd6xyrqxp2pn9ybwrq8fx8a";
|
|
||||||
"x86_64-darwin" = "1prz6c1gs8z7dgpdy2id2mjn1c8f5p2bf9b39985bav448njbyjz";
|
|
||||||
}."${stdenv.system}" or (throw "system ${stdenv.system} not supported");
|
|
||||||
};
|
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://github.com/crystal-lang/crystal/archive/${version}.tar.gz";
|
url = "https://github.com/crystal-lang/crystal/archive/${version}.tar.gz";
|
||||||
sha256 = "05ymwmjkl1b4m888p725kybpiap5ag2vj8l07d59j02inm5r0rcv";
|
sha256 = "8cf1b9a4eab29fca2f779ea186ae18f7ce444ce189c621925fa1a0c61dd5ff55";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
prebuiltName = "crystal-0.23.0-1";
|
||||||
|
prebuiltSrc = let arch = {
|
||||||
|
"x86_64-linux" = "linux-x86_64";
|
||||||
|
"i686-linux" = "linux-i686";
|
||||||
|
"x86_64-darwin" = "darwin-x86_64";
|
||||||
|
}."${stdenv.system}" or (throw "system ${stdenv.system} not supported");
|
||||||
|
in fetchurl {
|
||||||
|
url = "https://github.com/crystal-lang/crystal/releases/download/0.23.0/${prebuiltName}-${arch}.tar.gz";
|
||||||
|
sha256 = {
|
||||||
|
"x86_64-linux" = "0nhs7swbll8hrk15kmmywngkhij80x62axiskb1gjmiwvzhlh0qx";
|
||||||
|
"i686-linux" = "03xp8d3lqflzzm26lpdn4yavj87qzgd6xyrqxp2pn9ybwrq8fx8a";
|
||||||
|
"x86_64-darwin" = "1prz6c1gs8z7dgpdy2id2mjn1c8f5p2bf9b39985bav448njbyjz";
|
||||||
|
}."${stdenv.system}";
|
||||||
|
};
|
||||||
|
|
||||||
|
srcs = [ src prebuiltSrc ];
|
||||||
|
|
||||||
# crystal on Darwin needs libiconv to build
|
# crystal on Darwin needs libiconv to build
|
||||||
buildInputs = [
|
libs = [
|
||||||
boehmgc libatomic_ops pcre libevent llvm_4 makeWrapper
|
boehmgc libatomic_ops pcre libevent
|
||||||
] ++ stdenv.lib.optionals stdenv.isDarwin [
|
] ++ stdenv.lib.optionals stdenv.isDarwin [
|
||||||
libiconv
|
libiconv
|
||||||
];
|
];
|
||||||
|
|
||||||
libPath = stdenv.lib.makeLibraryPath ([
|
nativeBuildInputs = [ makeWrapper ];
|
||||||
boehmgc libatomic_ops pcre libevent
|
|
||||||
] ++ stdenv.lib.optionals stdenv.isDarwin [
|
|
||||||
libiconv
|
|
||||||
]);
|
|
||||||
|
|
||||||
unpackPhase = ''
|
buildInputs = libs ++ [ llvm ];
|
||||||
tar zxf ${src}
|
|
||||||
tar zxf ${prebuiltBinary}
|
|
||||||
'';
|
|
||||||
|
|
||||||
sourceRoot = ".";
|
libPath = stdenv.lib.makeLibraryPath libs;
|
||||||
|
|
||||||
|
sourceRoot = "${name}";
|
||||||
|
|
||||||
fixPrebuiltBinary = if stdenv.isDarwin then ''
|
fixPrebuiltBinary = if stdenv.isDarwin then ''
|
||||||
wrapProgram $(pwd)/crystal-${version}-1/embedded/bin/crystal \
|
wrapProgram ../${prebuiltName}/embedded/bin/crystal \
|
||||||
--suffix DYLD_LIBRARY_PATH : $libPath
|
--suffix DYLD_LIBRARY_PATH : $libPath
|
||||||
''
|
''
|
||||||
else ''
|
else ''
|
||||||
patchelf --set-interpreter $(cat $NIX_CC/nix-support/dynamic-linker) \
|
patchelf --set-interpreter $(cat $NIX_CC/nix-support/dynamic-linker) \
|
||||||
crystal-${version}-1/embedded/bin/crystal
|
../${prebuiltName}/embedded/bin/crystal
|
||||||
patchelf --set-rpath ${ stdenv.lib.makeLibraryPath [ stdenv.cc.cc ] } \
|
patchelf --set-rpath ${ stdenv.lib.makeLibraryPath [ stdenv.cc.cc ] } \
|
||||||
crystal-${version}-1/embedded/bin/crystal
|
../${prebuiltName}/embedded/bin/crystal
|
||||||
'';
|
'';
|
||||||
|
|
||||||
buildPhase = ''
|
preBuild = ''
|
||||||
# patch the script which launches the prebuilt compiler
|
patchShebangs bin/crystal
|
||||||
substituteInPlace $(pwd)/crystal-${version}-1/bin/crystal --replace \
|
patchShebangs ../${prebuiltName}/bin/crystal
|
||||||
"/usr/bin/env bash" "${stdenv.shell}"
|
|
||||||
substituteInPlace $(pwd)/crystal-${version}/bin/crystal --replace \
|
|
||||||
"/usr/bin/env bash" "${stdenv.shell}"
|
|
||||||
|
|
||||||
${fixPrebuiltBinary}
|
${fixPrebuiltBinary}
|
||||||
|
export PATH="$(pwd)/../${prebuiltName}/bin:$PATH"
|
||||||
cd crystal-${version}
|
|
||||||
make release=1 PATH="../crystal-${version}-1/bin:$PATH"
|
|
||||||
make doc
|
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
makeFlags = [ "CRYSTAL_CONFIG_VERSION=${version}" "release=1" "all" "doc" ];
|
||||||
|
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
install -Dm755 .build/crystal $out/bin/crystal
|
install -Dm755 .build/crystal $out/bin/crystal
|
||||||
wrapProgram $out/bin/crystal \
|
wrapProgram $out/bin/crystal \
|
||||||
--suffix CRYSTAL_PATH : $out/lib/crystal \
|
--suffix CRYSTAL_PATH : $out/lib/crystal \
|
||||||
--suffix LIBRARY_PATH : $libPath
|
--suffix LIBRARY_PATH : $libPath
|
||||||
|
|
||||||
install -dm755 $out/lib/crystal
|
install -dm755 $out/lib/crystal
|
||||||
cp -r src/* $out/lib/crystal/
|
cp -r src/* $out/lib/crystal/
|
||||||
|
|
||||||
|
@ -93,12 +83,13 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
dontStrip = true;
|
dontStrip = true;
|
||||||
|
|
||||||
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "A compiled language with Ruby like syntax and type inference";
|
description = "A compiled language with Ruby like syntax and type inference";
|
||||||
homepage = https://crystal-lang.org/;
|
homepage = https://crystal-lang.org/;
|
||||||
license = stdenv.lib.licenses.asl20;
|
license = stdenv.lib.licenses.asl20;
|
||||||
maintainers = with stdenv.lib.maintainers; [ sifmelcara ];
|
maintainers = with stdenv.lib.maintainers; [ sifmelcara david50407 ];
|
||||||
platforms = [ "x86_64-linux" "i686-linux" "x86_64-darwin" ];
|
platforms = [ "x86_64-linux" "i686-linux" "x86_64-darwin" ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -5410,7 +5410,9 @@ with pkgs;
|
||||||
'';
|
'';
|
||||||
});
|
});
|
||||||
|
|
||||||
crystal = callPackage ../development/compilers/crystal { };
|
crystal = callPackage ../development/compilers/crystal {
|
||||||
|
llvm = llvm_4;
|
||||||
|
};
|
||||||
|
|
||||||
devpi-client = callPackage ../development/tools/devpi-client {};
|
devpi-client = callPackage ../development/tools/devpi-client {};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue