Skip to content

Commit

Permalink
pkgs/profpatsch/xdg-open: fix lazy loading
Browse files Browse the repository at this point in the history
It’s kind of dumb to realize the store path and then
lazy-load the result of thatheh.
  • Loading branch information
Profpatsch committed Aug 8, 2024
1 parent d27b0c0 commit 1b1dbbe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkgs/profpatsch/xdg-open/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ let
pkgs = {
pkg = ({binary, package}: "${lib.getBin pkgs.${package}}/bin/${binary}");
pkgOnDemand = ({binary, package}: "${lazy-packages.mkWrapper {
package = (lib.getBin pkgs.${package});
package = pkgs.${package};
}}/bin/${binary}");
};
special = {
Expand Down

0 comments on commit 1b1dbbe

Please sign in to comment.