equibop: 2.1.9 -> 2.2.0 (#514209)

This commit is contained in:
Peder Bergebakken Sundt
2026-05-08 22:37:09 +00:00
committed by GitHub
2 changed files with 11 additions and 6 deletions
+2 -2
View File
@@ -50,8 +50,8 @@ stdenvNoCC.mkDerivation {
outputHash =
{
x86_64-linux = "sha256-pJp4l0QJAg42gj/R4bq4P1iVtMehkvNs7hv9/3RmNsI=";
aarch64-linux = "sha256-POIXQZ3ZruzfwF/6Kg6zRXdSrKtm56cBCMAvB5JTuJM=";
x86_64-linux = "sha256-p8jx9HDYG2q2nhBiBK8XDTYm9O0ptTqv8L+PrQ8oiy8=";
aarch64-linux = "sha256-UsccQFaSSjhmv1+oF2FZcRG8xtWBCcPD+tizbdQ7SSI=";
}
.${stdenvNoCC.hostPlatform.system}
or (throw "Unsupported system ${stdenvNoCC.hostPlatform.system}");
+9 -4
View File
@@ -6,7 +6,7 @@
makeWrapper,
makeDesktopItem,
copyDesktopItems,
electron_40,
electron_41,
python3Packages,
pipewire,
libpulseaudio,
@@ -18,17 +18,17 @@
withMiddleClickScroll ? false,
}:
let
electron = electron_40;
electron = electron_41;
in
stdenv.mkDerivation (finalAttrs: {
pname = "equibop";
version = "3.1.9";
version = "3.2.0";
src = fetchFromGitHub {
owner = "Equicord";
repo = "Equibop";
tag = "v${finalAttrs.version}";
hash = "sha256-4v0NKGmdbEdHyjz35l+QUnXvnVfLzIe1vLxOSmdgbYQ=";
hash = "sha256-CPRn1F15N4Rjry91Gu+ZXWpKVTOEnHI3TmZn8502QB4=";
};
postPatch = ''
@@ -38,6 +38,10 @@ stdenv.mkDerivation (finalAttrs: {
# disable auto updates
substituteInPlace src/main/updater.ts \
--replace-fail 'const isOutdated = autoUpdater.checkForUpdates().then(res => Boolean(res?.isUpdateAvailable));' 'const isOutdated = false;'
# disable auto update for bun
substituteInPlace scripts/build/compileArrpc.mts \
--replace-fail -baseline ""
'';
node-modules = callPackage ./node-modules.nix { };
@@ -177,6 +181,7 @@ stdenv.mkDerivation (finalAttrs: {
maintainers = with lib.maintainers; [
NotAShelf
rexies
PerchunPak
];
mainProgram = "equibop";
# I am not confident in my ability to support Darwin, please PR if this is important to you