mirror of
https://github.com/daylinmorgan/oizys.git
synced 2025-01-22 11:17:33 -06:00
18 lines
574 B
Nix
18 lines
574 B
Nix
{ fetchFromGitHub, buildNimPackage }:
|
|
buildNimPackage (finalAttrs: {
|
|
pname = "nimlangserver";
|
|
version = "1.6.0-unstable";
|
|
src = fetchFromGitHub {
|
|
owner = "nim-lang";
|
|
repo = "langserver";
|
|
rev = "5adc15be0f785f0caa3b7fc444e54eeb5596602a";
|
|
# rev = "v${finalAttrs.version}";
|
|
hash = "sha256-JyBjHAP/sxQfQ1XvyeZyHsu0Er5D7ePDGyJK7Do5kyk=";
|
|
};
|
|
|
|
doCheck = false;
|
|
|
|
# nix build '.#nimlangserver.src'
|
|
# nix run "github:daylinmorgan/nnl" -- result/nimble.lock -o:pkgs/nim/nimlangserver/lock.json --prefetch-git:bearssl,zlib
|
|
lockFile = ./lock.json;
|
|
})
|