mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 07:23:20 +00:00
discord: remove with lib;
from meta
This commit is contained in:
parent
db661a422d
commit
f5627723fb
@ -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
|
||||
@ -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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user