Skip to content

Commit

Permalink
Merge branch 'main' into deduplicate-inputs
Browse files Browse the repository at this point in the history
  • Loading branch information
ErinvanderVeen authored Jun 13, 2024
2 parents d828b10 + ece3295 commit e04c016
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@
### Fixed
- [#53](https://github.com/tweag/nixtract/pull/53) resolve an issue where some derivations were analyzed multiple times

### Removed
- [#50](https://github.com/tweag/nixtract/pull/50) excludes fixed output derivations in nixtract output

## [0.3.0] - 2024-04-17
### Added
- [#34](https://github.com/tweag/nixtract/pull/34) add option to provide nixtract with a status communication channel
Expand Down
1 change: 1 addition & 0 deletions src/nix/describe_derivation.nix
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@ in
targetValue;
outputs = map (name: { inherit name; output_path = lib.safePlatformDrvEval targetSystem (drv: drv.outPath) targetValue.${name}; }) (targetValue.outputs or [ ]);
build_inputs =
if targetValue ? outputHash then [ ] else
nixpkgs.lib.concatMap
({ name, value }:
if nixpkgs.lib.isDerivation value then
Expand Down

0 comments on commit e04c016

Please sign in to comment.