Merge pull request #242511 from winterqt/update-thelounge

authored by

Ryan Lahfa and committed by
GitHub
b042cd26 e43e2448

+3 -3
+3 -3
pkgs/applications/networking/irc/thelounge/default.nix
··· 16 16 17 17 stdenv.mkDerivation (finalAttrs: { 18 18 pname = "thelounge"; 19 - version = "4.4.0"; 19 + version = "4.4.1"; 20 20 21 21 src = fetchFromGitHub { 22 22 owner = "thelounge"; 23 23 repo = "thelounge"; 24 24 rev = "v${finalAttrs.version}"; 25 - hash = "sha256-2MHq71lKkFe1uHEENgUiYsO99bPyLmEZZIdcdgsZfSM="; 25 + hash = "sha256-4FdNYP9VLgv/rfvT7KHCF+ABFsZvPbJjfz6IvvDkRNA="; 26 26 }; 27 27 28 28 # Allow setting package path for the NixOS module. ··· 35 35 36 36 offlineCache = fetchYarnDeps { 37 37 yarnLock = "${finalAttrs.src}/yarn.lock"; 38 - hash = "sha256-OKLsNGl94EDyLgP2X2tiwihgRQFXGvf5XgXwgX+JEpk="; 38 + hash = "sha256-MM6SgVT7Pjdu96A4eWRucEzT7uNPxBqUDgHKl8mH2C0="; 39 39 }; 40 40 41 41 nativeBuildInputs = [ nodejs yarn fixup_yarn_lock python3 npmHooks.npmInstallHook ] ++ lib.optional stdenv.isDarwin darwin.cctools;