mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-14 00:43:24 +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 ];
|
||
|
}
|