mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
Force --no-same-owner for unpacking node sources.
This commit is contained in:
parent
b7f9aad7e1
commit
b116679b24
1 changed files with 1 additions and 1 deletions
|
@ -8,7 +8,7 @@ let
|
||||||
npmFlags = concatStringsSep " " (map (v: "--${v}") flags);
|
npmFlags = concatStringsSep " " (map (v: "--${v}") flags);
|
||||||
|
|
||||||
sources = runCommand "node-sources" {} ''
|
sources = runCommand "node-sources" {} ''
|
||||||
tar xf ${nodejs.src}
|
tar --no-same-owner -xf ${nodejs.src}
|
||||||
mv *node* $out
|
mv *node* $out
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue