about summary refs log tree commit diff
path: root/pkgs/applications/networking/instant-messengers/discord
AgeCommit message (Collapse)AuthorFilesLines
2022-05-12makeShellWrapper: add explicitly named attributeNaïm Favier1-2/+2
So that things that use the makeShellWrapper/wrapProgramShell functions can depend on makeShellWrapper explicitly, which should ease migration in the future.
2022-05-10makeWrapper,makeBinaryWrapper: introduce explicitly named functionsNaïm Favier1-2/+3
Because both versions might end up in a derivation's build inputs, it might be useful to be able to explicitly select which function to use.
2022-05-10discord: use non-binary wrapper for wrapGAppsHookDominik Xaver Hörl1-2/+2
The use of --add-flags in this derivation does not work with binary wrappers, which wrapGAppsHook uses since #164163.
2022-04-30discord: fix desktop icon locationAnund1-1/+3
${out}/share/pixmaps and $XDG_DATA_DIRS/share/pixmaps are not part of the freedesktop icon theme spec. /usr/share/pixmaps is. There are some packages that have been patched to recognize this non standard path. Those packages may be depending this path so here we only add the equivalent hicolor theme fallback path. Without this change the discord icon won't be picked up by apps attempting to follow the lookup pattern in the freedesktop spec.
2022-04-15discord-canary: 0.0.134 -> 0.0.135Infinidoge1-2/+2
2022-03-03discord-canary: 0.0.133 -> 0.0.134Artturin1-2/+2
2022-03-02discord-ptb: 0.0.27 -> 0.0.29Dmitriy1-2/+2
2022-02-25treewide: switch all desktop file generators to new APIK9001-2/+2
Notably: - remove explicit arguments that match the defaults - convert everything to the right Nix types
2022-02-17discord: 0.0.16 -> 0.0.17Shea Levy1-2/+2
2022-02-12Merge pull request #159112 from wackbyte/discord-canary-0.0.133Artturi1-4/+4
2022-02-11discord-canary: 0.0.280 -> 0.0.283 (darwin)wackbyte1-2/+2
2022-02-11discord-canary: 0.0.132 -> 0.0.133 (linux)wackbyte1-2/+2
2022-02-11nit: remove mysterious extra newlinesInfinidoge1-2/+0
2022-02-11discord: set meta.mainProgram to binaryNameInfinidoge1-20/+22
Additionally, pull out repetitive pieces of the `packages` definition.
2022-01-31Merge pull request #155798 from devins2518/discordBobby Rong1-14/+9
discord-ptb: 0.0.58 -> 0.0.59
2022-01-27wayland: enable ozone via $NIXOS_OZONE_WLWout Mertens1-0/+1
Chrome, Chromium, VSCode, Slack, Signal, Discord, element-desktop, schildichat. For the latter two, the feature flag useWayland was removed and a wrapper script was provided.
2022-01-20discord-ptb: 0.0.58 -> 0.0.59Devin Singh1-14/+9
2022-01-14discord: add derivations for {x86_64,aarch64}-darwinDevin Singh3-59/+151
2022-01-14Merge pull request #153835 from jyooru/update/discord-ptblegendofmiracles1-2/+2
discord-ptb: 0.0.26 -> 0.0.27
2022-01-11discord-canary: 0.0.131 -> 0.0.132Infinidoge1-2/+2
2022-01-07discord-ptb: 0.0.26 -> 0.0.27Joel1-2/+2
2021-11-21discord: remove double systemd dependencywackbyte1-1/+1
2021-09-22discord-canary: 0.0.130 -> 0.0.131ThreshMain1-2/+2
2021-09-22discord-ptb: 0.0.25 -> 0.0.26ThreshMain1-2/+2
2021-09-22discord: 0.0.15 → 0.0.16Moritz Hedtke1-3/+2
2021-09-14discord-canary: 0.0.129 -> 0.0.130jmc-figueira1-2/+2
2021-09-02discord-canary: 0.0.128 -> 0.0.129jmc-figueira1-2/+2
2021-08-28discord-canary: 0.0.126 -> 0.0.128Mihai Fufezan1-2/+2
2021-07-15discord: fix updater script (#128633)Moritz Hedtke3-39/+12
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
2021-06-16discord-canary: 0.0.124 -> 0.0.125Artturin1-2/+2
2021-06-10Change all alsaLib references to alsa-libAndersonTorres1-3/+3
2021-06-09discord: symlink Discord to discord to be consistent (#126254)Artturi1-0/+2
with distros such as arch
2021-06-04discord-canary: 0.0.123 -> 0.0.124Artturin2-3/+4
2021-05-25discord: fix runtime linkingJonathan Ringer1-3/+3
2021-05-24discord: 0.0.14 -> 0.0.15wearemnr1-6/+6
2021-05-21discord-canary: 0.0.121 -> 0.0.122Wyatt Osterling1-2/+2
bump DiscordCanary from version 0.0.121 to 0.0.122
2021-05-15discord-canary: 0.0.119 -> 0.0.121Hedtke, Moritz1-2/+2
2021-04-27discord: Remove tadeokondrak as maintainerTadeo Kondrak1-1/+1
I added myself as a maintainer when I made a significant change to the package, but I no longer use Discord.
2021-04-19discord: remove unused inputSandro1-1/+1
2021-04-18discord: fix autoPatchelfHook not finding libXdamage.so.1Jonathan Ringer1-0/+1
2021-03-23discord: 0.0.13 -> 0.0.14Reed1-2/+2
2021-02-10discord-canary: 0.0.118 -> 0.0.119R. RyanTM1-2/+2
2021-01-29discord-canary: 0.0.116 -> 0.0.118R. RyanTM1-2/+2
2021-01-15pkgs/applications: stdenv.lib -> libBen Siraphob1-1/+1
2021-01-11treewide: with stdenv.lib; in meta -> with lib;Profpatsch1-2/+2
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
2020-12-04discord: 0.0.12 -> 0.0.13ldesgoui1-2/+2
2020-11-27discord-ptb: 0.0.22 -> 0.0.23R. RyanTM1-4/+4
2020-11-13discord-canary: 0.0.114 -> 0.0.115R. RyanTM1-2/+2
2020-10-11discord: Add libdbusmenu dependency (#100234)Lana Black1-2/+2
2020-09-28discord-canary: 0.0.112 -> 0.0.114R. RyanTM1-2/+2