Commit 2a6ca481 authored by Marie Ramlow's avatar Marie Ramlow
Browse files

chatterino{2,7}: pin boost to 1.86

Upstream already released a patch[^1], but it's not yet released.
It modifies submodules so it's difficult to apply, so we just use boost
1.86 until a new release is made.

[^1]: https://github.com/Chatterino/chatterino2/pull/5832/commits/ec728f3ca70f9b201e3108c91f44817f3e38d668
parent 9cdbbbda
Loading
Loading
Loading
Loading
+40 −34
Original line number Diff line number Diff line
@@ -3,9 +3,14 @@
  callPackage,
  fetchFromGitHub,
  nix-update-script,
  boost186,
}:

(callPackage ./common.nix { }).overrideAttrs (finalAttrs: _: {
(callPackage ./common.nix {
  boost = boost186;
}).overrideAttrs
  (
    finalAttrs: _: {
      pname = "chatterino2";
      version = "2.5.2";

@@ -41,4 +46,5 @@
          marie
        ];
      };
})
    }
  )
+2 −0
Original line number Diff line number Diff line
@@ -3,10 +3,12 @@
  chatterino2,
  fetchFromGitHub,
  nix-update-script,
  boost186,
}:

(chatterino2.buildChatterino {
  enableAvifSupport = true;
  boost = boost186;
}).overrideAttrs
  (
    finalAttrs: _: {