f34ce41345
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
59 lines
1.2 KiB
Nix
59 lines
1.2 KiB
Nix
{
|
|
fetchFromGitHub,
|
|
lib,
|
|
makeBinaryWrapper,
|
|
odin,
|
|
stdenv,
|
|
unstableGitUpdater,
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "ols";
|
|
version = "0-unstable-2024-07-01";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "DanielGavin";
|
|
repo = "ols";
|
|
rev = "ee368d473146d33e89f9be9f754fd6d0ee08ecc6";
|
|
hash = "sha256-WowbFsec8oZVPTMDefQJYOb4GfH3xa40bN3P9AIjflE=";
|
|
};
|
|
|
|
postPatch = ''
|
|
patchShebangs build.sh odinfmt.sh
|
|
'';
|
|
|
|
nativeBuildInputs = [ makeBinaryWrapper ];
|
|
|
|
buildInputs = [ odin ];
|
|
|
|
buildPhase = ''
|
|
runHook preBuild
|
|
|
|
./build.sh && ./odinfmt.sh
|
|
|
|
runHook postBuild
|
|
'';
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
install -Dm755 ols odinfmt -t $out/bin/
|
|
wrapProgram $out/bin/ols --set-default ODIN_ROOT ${odin}/share
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
passthru.updateScript = unstableGitUpdater { hardcodeZeroVersion = true; };
|
|
|
|
meta = {
|
|
inherit (odin.meta) platforms;
|
|
description = "Language server for the Odin programming language";
|
|
homepage = "https://github.com/DanielGavin/ols";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [
|
|
astavie
|
|
znaniye
|
|
];
|
|
mainProgram = "ols";
|
|
};
|
|
}
|