mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-26 15:44:20 +00:00
13 lines
153 B
Nix
13 lines
153 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
nim-unwrapped-1,
|
|
nim,
|
|
}:
|
|
|
|
nim.passthru.wrapNim {
|
|
nimUnwrapped = nim-unwrapped-1;
|
|
patches = [ ./nim.cfg.patch ];
|
|
}
|