signal-desktop-from-src: 6.40.0 -> 6.42.0

This commit is contained in:
2023-12-19 20:53:33 +00:00
parent 5cd92279b7
commit 33d2f0895f

View File

@@ -139,9 +139,9 @@ let
mkNodeJs = nodejs: nodejs.overrideAttrs (upstream: mkNodeJs = nodejs: nodejs.overrideAttrs (upstream:
let let
# 18.15.0 matches the version in package.json # build with the same nodejs upstream expects in package.json (it will error if the version here is incorrect)
version = "18.15.0"; version = "18.17.1";
hash = "sha256-jkTWUBj/lzKEGVwjGGRpoOpAgul+xCAOX1cG1VhNqjc="; hash = "sha256-8hXPA9DwDwesC2dMaBn4BMFULhbxUtoEmAAirsz15lo=";
in { in {
inherit version; inherit version;
src = fetchurl { src = fetchurl {
@@ -173,13 +173,13 @@ let
in in
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "signal-desktop-from-src"; pname = "signal-desktop-from-src";
version = "6.40.0"; version = "6.42.0";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "signalapp"; owner = "signalapp";
repo = "Signal-Desktop"; repo = "Signal-Desktop";
leaveDotGit = true; # signal calculates the release date via `git` leaveDotGit = true; # signal calculates the release date via `git`
rev = "v${version}"; rev = "v${version}";
hash = "sha256-gtbsb78VFZvESOGu6duB8vKsrtWM7UxGf9che0ijK/M="; hash = "sha256-7MiyfdrbPmiENeWlElYNZDIGsbcSHj1d4rdBozE4bN8=";
}; };
patches = [ patches = [
@@ -228,7 +228,7 @@ stdenv.mkDerivation rec {
env.yarnOfflineCache = fetchYarnDeps { env.yarnOfflineCache = fetchYarnDeps {
yarnLock = "${src}/yarn.lock"; yarnLock = "${src}/yarn.lock";
hash = "sha256-S2wWk7ug8G3o0Fp7f9JqgksDecE5KL0ZLnA5mYKdfdE="; hash = "sha256-QvvtggYnXDjgk2aWsT0kwRE9/DiktlC3a9QACTWN8GU=";
}; };
# env.SIGNAL_ENV = "production"; # env.SIGNAL_ENV = "production";
# env.NODE_ENV = "production"; # env.NODE_ENV = "production";