Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## Unreleased

### Changed
* `downloadCargoPackage` now extracts tarballs with `--no-same-owner`.
Ultimately this should make no difference since the Nix store will reset all
ownership permissions anyway, but it may avoid some spurious errors on certain
systems.

## [0.23.2] - 2026-03-23

### Added
Expand Down
2 changes: 1 addition & 1 deletion lib/downloadCargoPackage.nix
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ stdenv.mkDerivation {
unpackPhase = ''
runHook preUnpack
mkdir -p crate
tar -xzf ${tarball} -C crate --strip-components=1
tar -xzf ${tarball} -C crate --strip-components=1 --no-same-owner
runHook postUnpack
'';

Expand Down