[Nix-dev] referring to a patch that's packed inside the source tarball

Marc Weber marco-oweber at gmx.de
Mon Dec 12 01:37:44 CET 2011


you can always overwrite the patchPhase:

patchPhase = ''
  unset patchPhase # reset this env var
  patchPhase # run patchPhase function (default implementation)
  patch -p1 < your.diff
'';

your solution is cleaner though.

Marc Weber


More information about the nix-dev mailing list