biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / ols / default.nix
blob963fbaef560e7bf5e2b2f4eca1e2d8430f5bd498
1 { stdenv, fetchFromGitHub, makeBinaryWrapper, odin, lib }:
3 stdenv.mkDerivation {
4   pname = "ols";
5   version = "0-unstable-2024-04-15";
7   src = fetchFromGitHub {
8     owner = "DanielGavin";
9     repo = "ols";
10     rev = "aa1aabda1cce68a6038c48429cc759f09ad2ebab";
11     hash = "sha256-yM+Syx8hWiSZatWfFFGz8lUJTOCozkZWPdPUhRW0/Ow=";
12   };
14   nativeBuildInputs = [
15     makeBinaryWrapper
16   ];
18   buildInputs = [
19     odin
20   ];
22   postPatch = ''
23     patchShebangs build.sh
24   '';
26   buildPhase = ''
27     runHook preBuild
29     ./build.sh
31     runHook postBuild
32   '';
34   installPhase = ''
35     runHook preInstall
37     install -Dm755 ols -t $out/bin/
38     wrapProgram $out/bin/ols --set-default ODIN_ROOT ${odin}/share
40     runHook postInstall
41   '';
43   meta = with lib; {
44     inherit (odin.meta) platforms;
45     description = "Language server for the Odin programming language";
46     mainProgram = "ols";
47     homepage = "https://github.com/DanielGavin/ols";
48     license = licenses.mit;
49     maintainers = with maintainers; [ astavie znaniye ];
50   };