Skip to content

Commit

Permalink
nix/overlays: fix attrset error
Browse files Browse the repository at this point in the history
  • Loading branch information
fufexan committed Nov 4, 2024
1 parent 753a89a commit 09b23ce
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nix/overlays.nix
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ in {
#
# TODO: Remove this overlay after the next stable Nixpkgs release.
sdbus-cpp_2 = final: prev: {
sdbus-cpp_2 = prev.sdbus-cpp_2 or final.sdbus-cpp.overrideAttrs (self: _: {
sdbus-cpp_2 = prev.sdbus-cpp_2 or (final.sdbus-cpp.overrideAttrs (self: _: {
version = "2.0.0";

src = final.fetchFromGitHub {
Expand All @@ -55,6 +55,6 @@ in {
rev = "v${self.version}";
hash = "sha256-W8V5FRhV3jtERMFrZ4gf30OpIQLYoj2yYGpnYOmH2+g=";
};
});
}));
};
}

0 comments on commit 09b23ce

Please sign in to comment.