Skip to content

Commit

Permalink
development/compilers/zig: upgrade to 0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Xe committed Apr 13, 2020
1 parent 180ae3d commit 8410898
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 6 deletions.
32 changes: 27 additions & 5 deletions pkgs/development/compilers/zig/default.nix
@@ -1,25 +1,47 @@
{ stdenv, fetchFromGitHub, cmake, llvmPackages, libxml2, zlib }:

stdenv.mkDerivation rec {
version = "0.5.0";
llvmPackages.stdenv.mkDerivation rec {
version = "0.6.0";
pname = "zig";

src = fetchFromGitHub {
owner = "ziglang";
repo = pname;
rev = version;
sha256 = "0xyl0riakh6kwb3yvxihb451kqs4ai4q0aygqygnlb2rlr1dn1zb";
sha256 = "13dwm2zpscn4n0p5x8ggs9n7mwmq9cgip383i3qqphg7m3pkls8z";
};

nativeBuildInputs = [ cmake ];
buildInputs = [ llvmPackages.clang-unwrapped llvmPackages.llvm libxml2 zlib ];
buildInputs = [
llvmPackages.clang-unwrapped
llvmPackages.llvm
llvmPackages.lld
libxml2
zlib
];

patches = [ ./llvm10_polly.patch ];

postPatch = ''
export llvm_extras=-Wl,${llvmPackages.llvm}/lib/LLVMPolly.so
substituteAllInPlace CMakeLists.txt
'';

preBuild = ''
export HOME=$TMPDIR;
'';

checkPhase = ''
runHook preCheck
./zig test $src/test/stage1/behavior.zig
runHook postCheck
'';

doCheck = true;

meta = with stdenv.lib; {
description = "Programming languaged designed for robustness, optimality, and clarity";
description =
"Programming languaged designed for robustness, optimality, and clarity";
homepage = "https://ziglang.org/";
license = licenses.mit;
platforms = platforms.unix;
Expand Down
10 changes: 10 additions & 0 deletions pkgs/development/compilers/zig/llvm10_polly.patch
@@ -0,0 +1,10 @@
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 97608cddf..e451c0711 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -369,4 +369,5 @@ target_link_libraries(zig_cpp LINK_PUBLIC
${CLANG_LIBRARIES}
${LLD_LIBRARIES}
${LLVM_LIBRARIES}
+ @llvm_extras@
)
2 changes: 1 addition & 1 deletion pkgs/top-level/all-packages.nix
Expand Up @@ -15012,7 +15012,7 @@ in
zmqpp = callPackage ../development/libraries/zmqpp { };

zig = callPackage ../development/compilers/zig {
llvmPackages = llvmPackages_9;
llvmPackages = llvmPackages_10;
};

zimlib = callPackage ../development/libraries/zimlib { };
Expand Down

0 comments on commit 8410898

Please sign in to comment.