Skip to content

Commit b9f808f

Browse files
committed
Remove deprecated defaultPackage field on flake.nix
1 parent 251edea commit b9f808f

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,10 @@
22

33
## 0.6.2 - 2025-02-25:
44

5-
* fix: Fix a failure when the store path does not have a signature. (thanks @minhtrancccp, issue [#114]))
5+
* fix: Fix a failure when the store path does not have a signature. (thanks @minhtrancccp, issue [#114])
6+
* chore: Update flake description to remove deprecated 'defaultPackage' field (thanks @minhtrancccp, issue [#113])
67

8+
#[113]: https://github.com/utdemir/nix-tree/issues/113
79
[#114]: https://github.com/utdemir/nix-tree/issues/114
810

911
## 0.6.1 - 2025-01-25:

flake.nix

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,9 @@
2828
pkgs = import nixpkgs { inherit system; overlays = [ overlay ]; };
2929
in
3030
{
31-
defaultPackage = pkgs.nix-tree;
31+
packages = {
32+
default = pkgs.nix-tree;
33+
};
3234
devShell = pkgs.haskellPackages.shellFor {
3335
packages = p: [ p."nix-tree" ];
3436
buildInputs = [

0 commit comments

Comments
 (0)