Skip to content

Commit

Permalink
spotify: add myself as a macOS maintainer
Browse files Browse the repository at this point in the history
  • Loading branch information
Enzime committed Apr 18, 2023
1 parent 7cddde9 commit 3a483ae
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
7 changes: 6 additions & 1 deletion pkgs/applications/audio/spotify/darwin.nix
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,11 @@
, meta
, fetchurl
, undmg
, lib
}:

stdenv.mkDerivation {
inherit pname meta;
inherit pname;

version = "1.1.97.962.g24733a46";

Expand All @@ -29,4 +30,8 @@ stdenv.mkDerivation {
mkdir -p $out/Applications
cp -r *.app $out/Applications
'';

meta = meta // {
maintainers = with lib.maintainers; [ Enzime ];
};
}
1 change: 0 additions & 1 deletion pkgs/applications/audio/spotify/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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" ];
};

Expand Down
6 changes: 5 additions & 1 deletion pkgs/applications/audio/spotify/linux.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -170,4 +170,8 @@ stdenv.mkDerivation {
runHook postInstall
'';

meta = meta // {
maintainers = with lib.maintainers; [ eelco ftrvxmtrx sheenobu timokau ma27 ];
};
}

0 comments on commit 3a483ae

Please sign in to comment.