about summary refs log tree commit diff
path: root/pkgs/development/tools
diff options
context:
space:
mode:
authorThiago Kenji Okada <thiagokokada@gmail.com>2024-02-12 13:19:40 +0000
committerGitHub <noreply@github.com>2024-02-12 13:19:40 +0000
commit3839d30fcadb940c17a3fc589e8a1d9db048ad88 (patch)
tree6f86db442d24d14982d338b269746e6b12b7087a /pkgs/development/tools
parent2d627a2a704708673e56346fcb13d25344b8eaf3 (diff)
parenta0bfe7bcf5cd7795cdf6cb11e1bf5cc70b503d18 (diff)
downloadnixlib-3839d30fcadb940c17a3fc589e8a1d9db048ad88.tar
nixlib-3839d30fcadb940c17a3fc589e8a1d9db048ad88.tar.gz
nixlib-3839d30fcadb940c17a3fc589e8a1d9db048ad88.tar.bz2
nixlib-3839d30fcadb940c17a3fc589e8a1d9db048ad88.tar.lz
nixlib-3839d30fcadb940c17a3fc589e8a1d9db048ad88.tar.xz
nixlib-3839d30fcadb940c17a3fc589e8a1d9db048ad88.tar.zst
nixlib-3839d30fcadb940c17a3fc589e8a1d9db048ad88.zip
Merge pull request #288276 from Astavie/ols
ols: nightly-2023-11-04 -> 0-unstable-2024-02-09
Diffstat (limited to 'pkgs/development/tools')
-rw-r--r--pkgs/development/tools/ols/default.nix11
1 files changed, 5 insertions, 6 deletions
diff --git a/pkgs/development/tools/ols/default.nix b/pkgs/development/tools/ols/default.nix
index cedaa46690aa..9357cdd9ae01 100644
--- a/pkgs/development/tools/ols/default.nix
+++ b/pkgs/development/tools/ols/default.nix
@@ -2,13 +2,13 @@
 
 stdenv.mkDerivation {
   pname = "ols";
-  version = "nightly-2023-11-04";
+  version = "0-unstable-2024-02-09";
 
   src = fetchFromGitHub {
     owner = "DanielGavin";
     repo = "ols";
-    rev = "b19c24eb17e7c16bcfb3144665fd405fd5e580f3";
-    hash = "sha256-c8mHVdXbn7aRKI/QBIZvBvl4sCNK49q+crQmTCjptwM=";
+    rev = "3eb1e0e60a66a4fc7347fb77837ff45ccbe1cabb";
+    hash = "sha256-qPcSZjvlBmFf3M98GrwIu8SGO2VbgdqBKzyFpGSEtrI=";
   };
 
   nativeBuildInputs = [
@@ -34,18 +34,17 @@ stdenv.mkDerivation {
   installPhase = ''
     runHook preInstall
 
-    mkdir -p $out/bin
-    cp ols $out/bin
+    install -Dm755 ols -t $out/bin/
     wrapProgram $out/bin/ols --set-default ODIN_ROOT ${odin}/share
 
     runHook postInstall
   '';
 
   meta = with lib; {
+    inherit (odin.meta) platforms;
     description = "Language server for the Odin programming language";
     homepage = "https://github.com/DanielGavin/ols";
     license = licenses.mit;
     maintainers = with maintainers; [ astavie znaniye ];
-    platforms = odin.meta.platforms;
   };
 }