12 lines
153 B
Nix
12 lines
153 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
nim-unwrapped-1,
|
|
nim,
|
|
}:
|
|
|
|
nim.passthru.wrapNim {
|
|
nimUnwrapped = nim-unwrapped-1;
|
|
patches = [ ./nim.cfg.patch ];
|
|
}
|