* Add support for lzma patches.
svn path=/nixpkgs/branches/stdenv-updates/; revision=19028
This commit is contained in:
parent
93db6f4cf8
commit
69434e0592
|
@ -533,6 +533,9 @@ patchPhase() {
|
|||
*.bz2)
|
||||
uncompress="bzip2 -d"
|
||||
;;
|
||||
*.lzma)
|
||||
uncompress="lzma -d"
|
||||
;;
|
||||
esac
|
||||
$uncompress < $i | patch ${patchFlags:--p1}
|
||||
stopNest
|
||||
|
|
Loading…
Reference in New Issue