Skip to content

Commit

Permalink
discord: remove with lib; from meta
Browse files Browse the repository at this point in the history
(cherry picked from commit f562772)
  • Loading branch information
DontEatOreo committed Oct 12, 2024
1 parent 694f99a commit 2bc67ad
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -65,13 +65,13 @@ let
srcs.${stdenv.hostPlatform.system}.${branch}
or (throw "${stdenv.hostPlatform.system} not supported on ${branch}");

meta = with lib; {
meta = {
description = "All-in-one cross-platform voice and text chat for gamers";
downloadPage = "https://discordapp.com/download";
homepage = "https://discordapp.com/";
license = licenses.unfree;
license = lib.licenses.unfree;
mainProgram = "discord";
maintainers = with maintainers; [
maintainers = with lib.maintainers; [
artturin
donteatoreo
infinidoge
Expand All @@ -83,7 +83,7 @@ let
"x86_64-darwin"
"aarch64-darwin"
];
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
};
package = if stdenv.hostPlatform.isLinux then ./linux.nix else ./darwin.nix;

Expand Down

0 comments on commit 2bc67ad

Please sign in to comment.