about summary refs log tree commit diff
path: root/pkgs/applications/networking/instant-messengers/teamspeak/client.nix
AgeCommit message (Collapse)AuthorFilesLines
2024-06-09treewide: Remove the definite article from meta.descriptionAlexis Hildebrandt1-1/+1
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"([Tt]he)? ' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Tt]he (.)/\1\U\2/'
2024-03-11llvmPackages_{12,13,14,15,16,17,git}.{libcxx,libcxxabi}: merge libcxxabi ↵a-n-n-a-l-e-e1-1/+1
into libcxx (#292043) - merge libcxxabi into libcxx for LLVM 12, 13, 14, 15, 16, 17, and git. - remove the link time workaround `-lc++ -lc++abi` from 58 packages as it is no longer required. - fixes https://github.com/NixOS/nixpkgs/issues/166205 - provides alternative fixes for. https://github.com/NixOS/nixpkgs/issues/269548 https://github.com/NixOS/nix/issues/9640 - pkgsCross.x86_64-freebsd builds work again This change can be represented in 3 stages 1. merge libcxxabi into libcxx -- files: pkgs/development/compilers/llvm/[12, git]/{libcxx, libcxxabi} 2. update stdenv to account for merge -- files: stdenv.{adapters, cc.wrapper, darwin} 3. remove all references to libcxxabi outside of llvm (about 58 packages modified) ### merging libcxxabi into libcxx - take the union of the libcxxabi and libcxx cmake flags - eliminate the libcxx-headers-only package - it was only needed to break libcxx <-> libcxxabi circular dependency - libcxx.cxxabi is removed. external cxxabi (freebsd) will symlink headers / libs into libcxx. - darwin will re-export the libcxxabi symbols into libcxx so linking `-lc++` is sufficient. - linux/freebsd `libc++.so` is a linker script `LINK(libc++.so.1, -lc++abi)` making `-lc++` sufficient. - libcxx/default.nix [12, 17] are identical except for patches and `LIBCXX_ADDITIONAL_LIBRARIES` (only used in 16+) - git/libcxx/defaul.nix does not link with -nostdlib when useLLVM is true so flag is removed. this is not much different than before as libcxxabi used -nostdlib where libcxx did not, so libc was linked in anyway. ### stdenv changes - darwin bootstrap, remove references to libcxxabi and cxxabi - cc-wrapper: remove c++ link workaround when libcxx.cxxabi doesn't exist (still exists for LLVM pre 12) - adapter: update overrideLibcxx to account for a pkgs.stdenv that only has libcxx ### 58 package updates - remove `NIX_LDFLAGS = "-l${stdenv.cc.libcxx.cxxabi.libName}` as no longer needed - swift, nodejs_v8 remove libcxxabi references in the clang override https://github.com/NixOS/nixpkgs/pull/292043
2023-09-23teamspeak_client: 3.6.1 -> 3.6.2Atemu1-2/+2
2023-08-01teamspeak_client: set mainProgramSefa Eyeoglu1-0/+1
Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
2023-07-25teamspeak_client: 3.6.0 -> 3.6.1Shawn89011-2/+2
2023-07-09Revert "teamspeak_client: use llvmPackages_10"Atemu1-2/+2
Works with the default llvm again now. This reverts commit 7ded73412a61ad0ffc57332daa73505acaa3f953.
2023-07-09teamspeak_client: add myself to maintainersAtemu1-1/+1
2023-07-09teamspeak_client: 3.5.6 -> 3.6.0Atemu1-14/+18
Upstream dropped x86 support
2022-06-25Merge pull request #179061 from Atemu/fix/ts3-waylandLuke Granger-Brown1-0/+2
ts3: disable native wayland support
2022-06-25ts3: disable native wayland supportAtemu1-0/+2
2022-06-23treewide/applications: add `sourceType` `binaryNativeCode` for many packagesRobert Scott1-0/+1
2022-03-02Merge pull request #162332 from Atemu/fix/ts3Luke Granger-Brown1-2/+2
teamspeak_client: use llvmPackages_10
2022-03-01teamspeak_client: use llvmPackages_10Atemu1-2/+2
Fixes https://github.com/NixOS/nixpkgs/issues/161395
2022-02-25treewide: switch all desktop file generators to new APIK9001-1/+1
Notably: - remove explicit arguments that match the defaults - convert everything to the right Nix types
2021-09-02teamspeak_client: fix desktop iconLin Yinfeng1-2/+2
2021-06-10Change all alsaLib references to alsa-libAndersonTorres1-2/+2
2021-05-02teamspeak_client: fix for quazip 1.xLuke Granger-Brown1-1/+1
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-11-25teamspeak_client: 3.5.3 -> 3.5.6Luke Granger-Brown1-6/+6
2020-05-17teamspeak_client: 3.3.2 -> 3.5.3Luke Granger-Brown1-6/+6
This now requires Qt5WebSockets, so that's been added as a dependency now.
2020-04-10treewide: Per RFC45, remove all unquoted URLsMichael Reilly1-2/+2
2020-01-22treewide: fix redirected urlsPatrick Hilhorst1-1/+1
According to https://repology.org/repository/nix_unstable/problems, we have a lot of packages that have http links that redirect to https as their homepage. This commit updates all these packages to use the https links as their homepage. The following script was used to make these updates: ``` curl https://repology.org/api/v1/repository/nix_unstable/problems \ | jq '.[] | .problem' -r \ | rg 'Homepage link "(.+)" is a permanent redirect to "(.+)" and should be updated' --replace 's@$1@$2@' \ | sort | uniq > script.sed find -name '*.nix' | xargs -P4 -- sed -f script.sed -i ```
2019-09-28teamspeak_client: 3.3.0 -> 3.3.2Johannes Schleifenbaum1-3/+3
2019-09-25teamspeak-client: fix stuck buildFabian Möller1-3/+5
2019-08-15treewide: name -> pname (easy cases) (#66585)volth1-1/+1
treewide replacement of stdenv.mkDerivation rec { name = "*-${version}"; version = "*"; to pname
2019-07-28teamspeak_client: 3.1.10 -> 3.3.0Johannes Schleifenbaum1-7/+5
2018-06-20teamspeak_client: 3.1.8 -> 3.1.10Bastian Köcher1-3/+3
2018-05-27teamspeak_client: fix startupSymphorien Gibol1-1/+2
segfaults with qt5.10, downgrade to 5.9 tries to load its homegrown libqxcb.so which does not find some libs, use nixpkgs libqxcb.so instead.
2018-02-11teamspeak_client: restrict platforms to i686 & x86_64 linuxAndreas Rammhold1-1/+1
2018-02-10teamspeak_client: 3.1.7 -> 3.1.8Bastian Köcher1-3/+3
2018-01-05teamspeak_client: 3.1.6 -> 3.1.7Bastian Köcher1-3/+3
2017-09-18teamspeak_client: Adds missing dependencyBastian Köcher1-4/+4
2017-09-17teamspeak_client: 3.1.4 -> 3.1.6Bastian Köcher1-5/+5
2017-06-07teamspeak_client: 3.0.19.4 -> 3.1.4Duarte David1-9/+9
2016-08-07teamspeak_client: 3.0.19.3 -> 3.0.19.4lukasepple1-3/+3
2016-07-17Merge pull request #17029 from nathanielbaxter/dev/teamspeak_clientJoachim F1-3/+3
teamspeak_client: 3.0.19.1 -> 3.0.19.3
2016-07-17teamspeak_client: 3.0.19.1 -> 3.0.19.3Nathaniel Baxter1-3/+3
2016-07-17teamspeak_client: specify a custom, nonfree licenseJoachim Fasting1-1/+5
The licensing terms depend on use [1], but the software is clearly nonfree. Previously, the package would happily build even with allowUnfree = false. [1]: http://sales.teamspeakusa.com/licensing.php
2016-05-07teamspeak_client: 3.0.18.2 -> 3.0.19.1Nathaniel Baxter1-6/+7
2016-01-24teamspeak client: bump 3.0.18.1 -> 3.0.18.2Nathaniel Baxter1-6/+5
2015-12-20teamspeak_client: Qt 5 infrastructure updateThomas Tuegel1-2/+2
2015-10-13teamspeak_client: Fixed qt and quazip lib references.Nathaniel Baxter1-4/+5
2015-10-11teamspeak_client: 3.0.16 -> 3.0.18.1 (Added missing SHA update)Matthias Beyer1-2/+2
2015-10-11teamspeak_client: 3.0.16 -> 3.18.1Matthias Beyer1-5/+5
2015-09-15xlibs: replace occurrences by xorgVladimír Čunát1-2/+2
This seems to have been confusing people, using both xlibs and xorg, etc. - Avoided renaming local (and different) xlibs binding in gcc*. - Fixed cases where both xorg and xlibs were used. Hopefully everything still works as before.
2015-07-24teamspeak_client: create .desktop fileNathaniel Baxter1-4/+26
2015-05-29Use libpulseaudio instead of pulseaudioWilliam A. Kennington III1-2/+2
2015-03-24qt5: make qt-5.4.1 defaultThomas Tuegel1-1/+1
2015-03-04orig-gcc -> orig-ccEelco Dolstra1-1/+1