about summary refs log tree commit diff
path: root/pkgs/development/tools/zls
diff options
context:
space:
mode:
authorfortuneteller2k <lythe1107@gmail.com>2021-06-06 14:01:19 +0800
committerfortuneteller2k <lythe1107@gmail.com>2021-06-06 14:19:07 +0800
commitee7ee13b27dbf969ee5f5a49b7fa18fa43e1f0e7 (patch)
tree9a42ead11a1d8e9d95022d3f138956edbb0d8d20 /pkgs/development/tools/zls
parent4a34590eced7ec7aadf4a64105d7a88125919738 (diff)
zls: 0.1.0 -> unstable-2021-06-06
Diffstat (limited to 'pkgs/development/tools/zls')
-rw-r--r--pkgs/development/tools/zls/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/development/tools/zls/default.nix b/pkgs/development/tools/zls/default.nix
index 0c9a715e9bd5c..0fbe7bc31140e 100644
--- a/pkgs/development/tools/zls/default.nix
+++ b/pkgs/development/tools/zls/default.nix
@@ -2,13 +2,13 @@
 
 stdenv.mkDerivation rec {
   pname = "zls";
-  version = "0.1.0";
+  version = "unstable-2021-06-06";
 
   src = fetchFromGitHub {
     owner = "zigtools";
     repo = pname;
-    rev = version;
-    sha256 = "sha256-A4aOdmlIxBUeKyczzLxH4y1Rl9TgE1EeiKGbWY4p/00=";
+    rev = "39d87188647bd8c8eed304ee18f2dd1df6942f60";
+    sha256 = "sha256-22N508sVkP1OLySAijhtTPzk2fGf+FVnX9LTYRbRpB4=";
     fetchSubmodules = true;
   };
 
@@ -19,7 +19,7 @@ stdenv.mkDerivation rec {
   '';
 
   installPhase = ''
-    zig build -Drelease-safe -Dtarget=${stdenv.hostPlatform.parsed.cpu.name}-native --prefix $out install
+    zig build -Drelease-safe -Dcpu=baseline --prefix $out install
   '';
 
   meta = with lib; {