mirror of
https://github.com/daylinmorgan/oizys.git
synced 2024-11-05 10:13:14 -06:00
18 lines
440 B
Nix
18 lines
440 B
Nix
{...}: (final: prev: {
|
|
nim-unwrapped-2 = prev.nim-unwrapped-2.overrideAttrs {
|
|
patches =
|
|
(prev.patches or [])
|
|
++ [
|
|
./install.patch
|
|
];
|
|
# installPhase = ''
|
|
# runHook preInstall
|
|
# install -Dt $out/bin bin/*
|
|
# ln -sf $out/nim/bin/nim $out/bin/nim
|
|
# ln -sf $out/nim/lib $out/lib
|
|
# ./install.sh $out
|
|
# cp -a dist tools $out/nim/
|
|
# runHook postInstall
|
|
# '';
|
|
};
|
|
})
|