summary refs log tree commit diff
diff options
context:
space:
mode:
authorMichael Hoang <enzime@users.noreply.github.com>2023-04-18 18:49:37 +0900
committerMichael Hoang <enzime@users.noreply.github.com>2023-04-18 18:54:22 +0900
commit3a483aee0ee304e4563dd38af9fa22f1bd0fdb4d (patch)
treef001aa415af1de546ecfbcf9b07547665667be9a
parent7cddde921877e2019b4b9968d445356134b082d6 (diff)
downloadnixpkgs-3a483aee0ee304e4563dd38af9fa22f1bd0fdb4d.tar
nixpkgs-3a483aee0ee304e4563dd38af9fa22f1bd0fdb4d.tar.gz
nixpkgs-3a483aee0ee304e4563dd38af9fa22f1bd0fdb4d.tar.bz2
nixpkgs-3a483aee0ee304e4563dd38af9fa22f1bd0fdb4d.tar.lz
nixpkgs-3a483aee0ee304e4563dd38af9fa22f1bd0fdb4d.tar.xz
nixpkgs-3a483aee0ee304e4563dd38af9fa22f1bd0fdb4d.tar.zst
nixpkgs-3a483aee0ee304e4563dd38af9fa22f1bd0fdb4d.zip
spotify: add myself as a macOS maintainer
-rw-r--r--pkgs/applications/audio/spotify/darwin.nix7
-rw-r--r--pkgs/applications/audio/spotify/default.nix1
-rw-r--r--pkgs/applications/audio/spotify/linux.nix6
3 files changed, 11 insertions, 3 deletions
diff --git a/pkgs/applications/audio/spotify/darwin.nix b/pkgs/applications/audio/spotify/darwin.nix
index cf512d252b1..7fcb3aad716 100644
--- a/pkgs/applications/audio/spotify/darwin.nix
+++ b/pkgs/applications/audio/spotify/darwin.nix
@@ -3,10 +3,11 @@
 , meta
 , fetchurl
 , undmg
+, lib
 }:
 
 stdenv.mkDerivation {
-  inherit pname meta;
+  inherit pname;
 
   version = "1.1.97.962.g24733a46";
 
@@ -29,4 +30,8 @@ stdenv.mkDerivation {
     mkdir -p $out/Applications
     cp -r *.app $out/Applications
   '';
+
+  meta = meta // {
+    maintainers = with lib.maintainers; [ Enzime ];
+  };
 }
diff --git a/pkgs/applications/audio/spotify/default.nix b/pkgs/applications/audio/spotify/default.nix
index 5e91707576d..cc12846a93f 100644
--- a/pkgs/applications/audio/spotify/default.nix
+++ b/pkgs/applications/audio/spotify/default.nix
@@ -8,7 +8,6 @@ let
     description = "Play music from the Spotify music service";
     sourceProvenance = with sourceTypes; [ binaryNativeCode ];
     license = licenses.unfree;
-    maintainers = with maintainers; [ eelco ftrvxmtrx sheenobu timokau ma27 ];
     platforms = [ "x86_64-linux" "x86_64-darwin" "aarch64-darwin" ];
   };
 
diff --git a/pkgs/applications/audio/spotify/linux.nix b/pkgs/applications/audio/spotify/linux.nix
index 72e72f8bc2d..0784bbfe1e1 100644
--- a/pkgs/applications/audio/spotify/linux.nix
+++ b/pkgs/applications/audio/spotify/linux.nix
@@ -71,7 +71,7 @@ let
 in
 
 stdenv.mkDerivation {
-  inherit pname version meta;
+  inherit pname version;
 
   # fetch from snapcraft instead of the debian repository most repos fetch from.
   # That is a bit more cumbersome. But the debian repository only keeps the last
@@ -170,4 +170,8 @@ stdenv.mkDerivation {
 
       runHook postInstall
     '';
+
+  meta = meta // {
+    maintainers = with lib.maintainers; [ eelco ftrvxmtrx sheenobu timokau ma27 ];
+  };
 }