spotify: add myself as a macOS maintainer

This commit is contained in:
Michael Hoang 2023-04-18 18:49:37 +09:00
parent 7cddde9218
commit 3a483aee0e
3 changed files with 11 additions and 3 deletions

View file

@ -3,10 +3,11 @@
, meta , meta
, fetchurl , fetchurl
, undmg , undmg
, lib
}: }:
stdenv.mkDerivation { stdenv.mkDerivation {
inherit pname meta; inherit pname;
version = "1.1.97.962.g24733a46"; version = "1.1.97.962.g24733a46";
@ -29,4 +30,8 @@ stdenv.mkDerivation {
mkdir -p $out/Applications mkdir -p $out/Applications
cp -r *.app $out/Applications cp -r *.app $out/Applications
''; '';
meta = meta // {
maintainers = with lib.maintainers; [ Enzime ];
};
} }

View file

@ -8,7 +8,6 @@ let
description = "Play music from the Spotify music service"; description = "Play music from the Spotify music service";
sourceProvenance = with sourceTypes; [ binaryNativeCode ]; sourceProvenance = with sourceTypes; [ binaryNativeCode ];
license = licenses.unfree; license = licenses.unfree;
maintainers = with maintainers; [ eelco ftrvxmtrx sheenobu timokau ma27 ];
platforms = [ "x86_64-linux" "x86_64-darwin" "aarch64-darwin" ]; platforms = [ "x86_64-linux" "x86_64-darwin" "aarch64-darwin" ];
}; };

View file

@ -71,7 +71,7 @@ let
in in
stdenv.mkDerivation { stdenv.mkDerivation {
inherit pname version meta; inherit pname version;
# fetch from snapcraft instead of the debian repository most repos fetch from. # 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 # That is a bit more cumbersome. But the debian repository only keeps the last
@ -170,4 +170,8 @@ stdenv.mkDerivation {
runHook postInstall runHook postInstall
''; '';
meta = meta // {
maintainers = with lib.maintainers; [ eelco ftrvxmtrx sheenobu timokau ma27 ];
};
} }