diff options
author | Qyriad <qyriad@qyriad.me> | 2024-05-07 14:40:18 -0600 |
---|---|---|
committer | Qyriad <qyriad@qyriad.me> | 2024-05-07 17:07:53 -0600 |
commit | 8822fd7dd5254e781660704858f2eca386bdf5a2 (patch) | |
tree | d626f4531b28c36b0ce7773ca8ff3fac6bcc45af /flake.nix | |
parent | b9be46fb3115dffcd5cdaa62523bd025c7342e42 (diff) |
package: default the build-release-notes arg like we do with lix-doc
Change-Id: I0e2df55efc1cd6ea0a3252b9f26676e84612fdb6
Diffstat (limited to 'flake.nix')
-rw-r--r-- | flake.nix | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -161,7 +161,6 @@ # Forward from the previous stage as we don’t want it to pick the lowdown override nixUnstable = prev.nixUnstable; - build-release-notes = final.buildPackages.callPackage ./maintainers/build-release-notes.nix { }; check-headers = final.buildPackages.callPackage ./maintainers/check-headers.nix { }; clangbuildanalyzer = final.buildPackages.callPackage ./misc/clangbuildanalyzer.nix { }; @@ -199,6 +198,8 @@ # for consumers of this flake. boehmgc-nix = final.nix.boehmgc-nix; libseccomp-nix = final.nix.libseccomp-nix; + # And same thing for our build-release-notes package. + build-release-notes = final.nix.build-release-notes; }; in { |