From 2eec15e32a890972ef44427fc2d1247314435986 Mon Sep 17 00:00:00 2001 From: Daniel <62436912+frostplexx@users.noreply.github.com> Date: Tue, 17 Feb 2026 14:16:30 +0100 Subject: [PATCH 1/4] fix: differing hash between nixos and darwin --- nix/injection.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/nix/injection.nix b/nix/injection.nix index 54d3b39..b40fc0a 100644 --- a/nix/injection.nix +++ b/nix/injection.nix @@ -26,7 +26,9 @@ stdenv.mkDerivation (rec { pnpmDeps = fetchPnpmDeps { inherit pname src version; fetcherVersion = 1; - hash = "sha256-pHIY4Ie66ZVwEne/4RmY2QvsRWcnfsl2kv3CDXcqVrg="; + hash = if stdenv.isDarwin + then "sha256-pHIY4Ie66ZVwEne/4RmY2QvsRWcnfsl2kv3CDXcqVrg=" + else "sha256-Oj34rQbKbsHnqPdVv+ti8z+gZTT+VOsDxg/MQ22sLRQ="; }; buildPhase = '' From 956215e6efda424e582cd8cbf42476266e63b2a5 Mon Sep 17 00:00:00 2001 From: Daniel <62436912+frostplexx@users.noreply.github.com> Date: Tue, 17 Feb 2026 17:44:55 +0100 Subject: [PATCH 2/4] test --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index c23525b..a69dbd2 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "luna", - "version": "1.12.1-beta", + "version": "1.12.2", "description": "A client mod for the Tidal music app for plugins", "author": { "name": "Inrixia", From 374a71e5a8c6a9a24090f11681b80ae56f9a7475 Mon Sep 17 00:00:00 2001 From: frostplexx <62436912+frostplexx@users.noreply.github.com> Date: Tue, 17 Feb 2026 16:47:24 +0000 Subject: [PATCH 3/4] Apply automatic changes --- nix/injection.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nix/injection.nix b/nix/injection.nix index 54d3b39..ec893b6 100644 --- a/nix/injection.nix +++ b/nix/injection.nix @@ -26,7 +26,7 @@ stdenv.mkDerivation (rec { pnpmDeps = fetchPnpmDeps { inherit pname src version; fetcherVersion = 1; - hash = "sha256-pHIY4Ie66ZVwEne/4RmY2QvsRWcnfsl2kv3CDXcqVrg="; + hash = "sha256-Oj34rQbKbsHnqPdVv+ti8z+gZTT+VOsDxg/MQ22sLRQ="; }; buildPhase = '' From 25b8aa98d9fd48f9d07d5969237cf5c04901857e Mon Sep 17 00:00:00 2001 From: Daniel <62436912+frostplexx@users.noreply.github.com> Date: Tue, 17 Feb 2026 17:59:26 +0100 Subject: [PATCH 4/4] fix: accidentally bumped version number --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index a69dbd2..c23525b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "luna", - "version": "1.12.2", + "version": "1.12.1-beta", "description": "A client mod for the Tidal music app for plugins", "author": { "name": "Inrixia",