about summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorBobby Rong <rjl931189261@126.com>2022-11-03 23:20:30 +0800
committerGitHub <noreply@github.com>2022-11-03 23:20:30 +0800
commitc084b2d8efe45f6feddbc6e2c181a90ce0311f5b (patch)
treeb208b19b7cbc90247ad55ebcbaed37b4f43c81f9 /pkgs/applications
parentbf71b7bfeb136a8657432028a1f9133097007d8b (diff)
parent090eea3b4a77fed5dfdfb23174e38e49897823f3 (diff)
Merge pull request #198270 from zendo/update-netease-music-gtk
netease-cloud-music-gtk: 2.0.2 -> 2.0.3
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/audio/netease-cloud-music-gtk/default.nix17
1 files changed, 4 insertions, 13 deletions
diff --git a/pkgs/applications/audio/netease-cloud-music-gtk/default.nix b/pkgs/applications/audio/netease-cloud-music-gtk/default.nix
index 7811125bd2459..524f89a26ac3f 100644
--- a/pkgs/applications/audio/netease-cloud-music-gtk/default.nix
+++ b/pkgs/applications/audio/netease-cloud-music-gtk/default.nix
@@ -1,6 +1,5 @@
 { lib
 , stdenv
-, fetchpatch
 , fetchFromGitHub
 , rustPlatform
 , meson
@@ -22,26 +21,18 @@
 
 stdenv.mkDerivation rec {
   pname = "netease-cloud-music-gtk";
-  version = "2.0.2";
+  version = "2.0.3";
 
   src = fetchFromGitHub {
     owner = "gmg137";
     repo = pname;
     rev = version;
-    hash = "sha256-0pmuzdRQBdUS4ORh3zJQWb/hbhk7SY3P4QMwoy4Mgp8=";
+    hash = "sha256-A3mvf6TZ3+aiWA6rg9G5NMaDKvO0VQzwIM1t0MaTpTc=";
   };
 
-  patches = [
-    (fetchpatch {
-      name = "add-cargo-lock-for-2.0.2.patch";
-      url = "https://github.com/gmg137/netease-cloud-music-gtk/commit/21b5d40d49e661fe7bd35ed10bb8b883ef7fcd9f.patch";
-      hash = "sha256-pSgc+yJQMNyLPYUMc1Kp/Kr+++2tH8srIM5PgVeoZ+E=";
-    })
-  ];
-
   cargoDeps = rustPlatform.fetchCargoTarball {
-    inherit src patches;
-    hash = "sha256-7Z5i5Xqtk4ZbBXSVYg1e05ENa2swC88Ctd2paE60Yyo=";
+    inherit src;
+    hash = "sha256-Y7rZTbg0zd/eoo6E8TmV8JJPs1N0bLlBjvB6W07Kelg=";
   };
 
   nativeBuildInputs = [