Merge pull request #336031 from Aleksanaa/netease-cloud-music-gtk

netease-cloud-music-gtk: 2.4.0 -> 2.4.1
This commit is contained in:
Nick Cao 2024-08-20 15:42:39 -04:00 committed by GitHub
commit 5a9edb304f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 311 additions and 272 deletions

File diff suppressed because it is too large Load Diff

View File

@ -18,19 +18,19 @@
stdenv.mkDerivation rec {
pname = "netease-cloud-music-gtk";
version = "2.4.0";
version = "2.4.1";
src = fetchFromGitHub {
owner = "gmg137";
repo = "netease-cloud-music-gtk";
rev = version;
hash = "sha256-uoC9J09U2aI1dhaKc3TxIyFwRrPRxDrzaV+RyoZ6mKo=";
hash = "sha256-5pIt6VBeNiQbKbffTPa0VJzO8pYGnfonpNpdtkaCwGI=";
};
cargoDeps = rustPlatform.importCargoLock {
lockFile = ./Cargo.lock;
outputHashes = {
"netease-cloud-music-api-1.3.2" = "sha256-QRz9Sdu+0I7SwujoTBKWPQMjPDdX8ZyVlFwMw9pM7UY=";
"netease-cloud-music-api-1.4.0" = "sha256-M/7jvrCndgl9lhmzTrNhQor9CBkWTFjfkVxQPW3ed7Q=";
};
};
@ -62,12 +62,12 @@ stdenv.mkDerivation rec {
gst-plugins-ugly
]);
meta = with lib; {
meta = {
description = "Rust + GTK based netease cloud music player";
homepage = "https://github.com/gmg137/netease-cloud-music-gtk";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ diffumist aleksana ];
license = lib.licenses.gpl3Plus;
maintainers = with lib.maintainers; [ diffumist aleksana ];
mainProgram = "netease-cloud-music-gtk4";
platforms = platforms.linux;
platforms = lib.platforms.linux;
};
}