mirror of
https://github.com/daylinmorgan/oizys.git
synced 2024-11-05 10:13:14 -06:00
12 lines
253 B
Nix
12 lines
253 B
Nix
|
{...}: (final: prev: {
|
||
|
nimlsp = prev.nimlsp.overrideNimAttrs {
|
||
|
requiredNimVersion = 2;
|
||
|
nimFlags = [
|
||
|
"--threads:on"
|
||
|
""
|
||
|
"-d:explicitSourcePath=${final.srcOnly final.pkgs.nim-unwrapped-2}"
|
||
|
"-d:tempDir=/tmp"
|
||
|
];
|
||
|
};
|
||
|
})
|