spotify: add myself as a macOS maintainer
This commit is contained in:
parent
7cddde9218
commit
3a483aee0e
3 changed files with 11 additions and 3 deletions
|
@ -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 ];
|
||||
};
|
||||
}
|
||||
|
|
|
@ -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" ];
|
||||
};
|
||||
|
||||
|
|
|
@ -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 ];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue