mirror of
https://github.com/daylinmorgan/oizys.git
synced 2024-11-05 01:53:15 -06:00
11 lines
253 B
Nix
11 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"
|
|
];
|
|
};
|
|
})
|