lx-music-desktop: 2.11.0 -> 2.12.0 (#469840)

This commit is contained in:
Edward Tjörnhammar
2025-12-14 18:59:22 +00:00
committed by GitHub
2 changed files with 12 additions and 6 deletions
+6
View File
@@ -24896,6 +24896,12 @@
githubId = 2060836;
name = "Casey Stark";
};
starryreverie = {
email = "starryreverie@proton.me";
github = "StarryReverie";
githubId = 42143810;
name = "Justin Chen";
};
starsep = {
email = "nix@starsep.com";
github = "starsep";
+6 -6
View File
@@ -8,22 +8,22 @@
makeWrapper,
electron_36,
electron_37,
commandLineArgs ? "",
}:
let
electron = electron_36;
electron = electron_37;
in
buildNpmPackage rec {
pname = "lx-music-desktop";
version = "2.11.0";
version = "2.12.0";
src = fetchFromGitHub {
owner = "lyswhut";
repo = "lx-music-desktop";
tag = "v${version}";
hash = "sha256-NMj8rb5PAejT1HCE5nxi2+SS9lFUVdLEqN0id23QjVc=";
hash = "sha256-g4QVpymzoRKIq70aRLXGFmUmIpSiXIZThrp8fumBKTQ=";
};
patches = [
@@ -38,7 +38,7 @@ buildNpmPackage rec {
makeWrapper
];
npmDepsHash = "sha256-cA9NdHe3lEg8twMLWoeomWgobidZ34TKwdC5rDezZ5g=";
npmDepsHash = "sha256-t6I8ch36Yh6N+qZy4/yr/gSyJ3qdyMWss5LbsagEFMQ=";
makeCacheWritable = true;
@@ -94,6 +94,6 @@ buildNpmPackage rec {
platforms = electron.meta.platforms;
sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
mainProgram = "lx-music-desktop";
maintainers = [ ];
maintainers = with lib.maintainers; [ starryreverie ];
};
}