Commit Graph

134 Commits

Author SHA1 Message Date
Daniel Höxtermann
ba29d1f535 xpra: 6.1.3 -> 6.2.1 2024-11-08 09:34:39 +01:00
Daniel Höxtermann
023ce21707 xpra: 6.1.2 -> 6.1.3 2024-10-06 13:18:54 +02:00
Emily
8532c03b61
xpra: 5.0.9 -> 6.1.2 (#332295) 2024-10-03 22:38:00 +01:00
Artturin
e0464e4788 treewide: replace stdenv.is with stdenv.hostPlatform.is
In preparation for the deprecation of `stdenv.isX`.

These shorthands are not conducive to cross-compilation because they
hide the platforms.

Darwin might get cross-compilation for which the continued usage of `stdenv.isDarwin` will get in the way

One example of why this is bad and especially affects compiler packages
https://www.github.com/NixOS/nixpkgs/pull/343059

There are too many files to go through manually but a treewide should
get users thinking when they see a `hostPlatform.isX` in a place where it
doesn't make sense.

```
fd --type f "\.nix" | xargs sd --fixed-strings "stdenv.is" "stdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "stdenv'.is" "stdenv'.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "clangStdenv.is" "clangStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "gccStdenv.is" "gccStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "stdenvNoCC.is" "stdenvNoCC.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "inherit (stdenv) is" "inherit (stdenv.hostPlatform) is"
fd --type f "\.nix" | xargs sd --fixed-strings "buildStdenv.is" "buildStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "effectiveStdenv.is" "effectiveStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "originalStdenv.is" "originalStdenv.hostPlatform.is"
```
2024-09-25 00:04:37 +03:00
Daniel Höxtermann
2004f7c00f xpra: 5.0.9 -> 6.1.2 2024-08-26 19:16:47 +02:00
Alexey Orlenko
dfc6da9fee
xpra: 4.4.6 -> 5.0.9
Co-authored-by: Daniel Höxtermann <daniel@hxtm.dev>
2024-07-24 00:27:52 +02:00
John Chadwick
2be8451d1a xpra: fix xdg-open path 2024-07-04 02:33:58 -04:00
github-actions[bot]
ae736c738d
Merge master into staging-next 2024-05-03 12:01:32 +00:00
Jussi Kuokkanen
ce3f586775 pkgs/tools: remove licenses.gpl2 2024-05-02 21:06:26 +02:00
Jan Tojnar
eb04659fc2 treewide: wrapGAppsHook → wrapGAppsHook3
This was achieved using the following command:

    sd 'wrapGAppsHook\b' wrapGAppsHook3 (rg -l 'wrapGAppsHook\b')

And then manually reverted the following changes:

- alias in top-level.nix
- function name in wrap-gapps-hook.sh
- comment in postFixup of at-spi2-core
- comment in gtk4
- comment in preFixup of 1password-gui/linux.nix
- comment in postFixup of qgis/unwrapped-ltr.nix and qgis/unwrapped.nix
- comment in postFixup of telegram-desktop
- comment in postFixup of fwupd
- buildCommand of mongodb-compass
- postFixup of xflux-gui
- comment in a patch in kdePackages.kde-gtk-config and plasma5Packages.kde-gtk-config
- description of programs.sway.wrapperFeatures.gtk NixOS option (manual rebuild)
2024-04-27 02:23:22 +02:00
Michal Sojka
a68dc64ea1 xpra: depend on libappindicator
Without this, xpra client does not show tray icon in wayland-based
desktops.
2023-09-08 14:21:09 +00:00
Nick Cao
11e6b88f0d
xpra: drop outdated patch for xf86videodummy 2023-07-02 16:55:01 +08:00
R. Ryantm
a2a94f709b xpra: 4.4.5 -> 4.4.6 2023-06-23 04:39:20 +00:00
Mario Rodas
cf9bb1f7dd xpra: add changelog to meta 2023-05-27 04:20:00 +00:00
R. Ryantm
b3e7774d21 xpra: 4.4.4 -> 4.4.5 2023-05-25 07:05:03 +00:00
Artturi
9a4f4b92f7
Merge pull request #190862 from zhaofengli/xpra-uinput-conf 2023-03-18 16:47:20 +02:00
R. Ryantm
d95545bb57 xpra: 4.4.3 -> 4.4.4 2023-03-15 10:28:42 +00:00
Mauricio Scheffer
7705b76cc1 xpra: 4.3.3 -> 4.4.3 2023-03-03 15:12:37 +00:00
Artturin
f9fdf2d402 treewide: move NIX_CFLAGS_COMPILE to the env attrset
with structuredAttrs lists will be bash arrays which cannot be exported
which will be a issue with some patches and some wrappers like cc-wrapper

this makes it clearer that NIX_CFLAGS_COMPILE must be a string as lists
in env cause a eval failure
2023-02-22 21:23:04 +02:00
Shawn8901
133fa5f867 treewide: remove global with lib; in pkgs/tools 2023-01-24 17:41:44 +01:00
Kototama
530f4c22d9 xpra: add missing invoke python3 module
This prevents the following error when starting xpra:
xpra initialization error:
 connection failed: No module named 'invoke'
2023-01-02 13:37:19 +01:00
Zhaofeng Li
13c2eb0eb3 xpra: Also add module paths to xorg-uinput.conf
If uinput is used, xpra will silently replace "xorg.conf" with
"xorg-uinput.conf" in the xorg/xvfb command line before launching
it [1]. We also need to inject the xorg module paths there.

[1] 337d861d28/xpra/x11/vfb_util.py (L231-L235)
2022-11-01 08:17:50 -06:00
Bjørn Forsman
06e2c42ae4 xpra: fix application icon location
This makes the icon visible in desktop environments. (Tested in GNOME).
2022-10-31 09:03:16 -05:00
Martino Fontana
c5b051905c xpra: fix launch 2022-08-08 21:53:44 +02:00
ajs124
45ec5898cb maintainers: remove tstrobel
was ts468 on github afaict and was actually a committer, but that account hasn't been active since early 2018
2022-06-29 00:54:53 +02:00
Sandro Jäckel
a2c2795e1c
xpra: remove ipaddress 2022-05-30 05:54:00 +02:00
Matt Votava
9abfef3f54
xpra: 4.3.2 -> 4.3.3 (#172682) 2022-05-20 14:32:42 +02:00
R. Ryantm
2a52ad5f76 xpra: 4.3.1 -> 4.3.2 2022-02-16 09:04:16 -08:00
Felix Buehler
09e3b7a570 treewide: remove all updateWalker/downloadURLRegexp 2022-01-26 21:46:08 +01:00
Louis Bettens
a3354b61b6 xpra: 4.2 -> 4.3.1 2022-01-22 20:08:40 +01:00
Zhaofeng Li
80e86f8871 xpra: Add NVENC support 2021-05-28 17:43:20 -07:00
Matt Votava
3147a7104d xpra: 4.1.3 -> 4.2
Add librsvg for icon resizing
2021-05-22 05:37:13 -07:00
Louis Bettens
c34dd57a3c xpra: 4.0.6 -> 4.1.3 2021-05-07 11:15:26 +02:00
Pavol Rusnak
a6ce00c50c
treewide: remove stdenv where not needed 2021-01-25 18:31:47 +01:00
Ben Siraphob
d6aeae8f90 pkgs/tools: pkgconfig -> pkg-config (2) 2021-01-17 23:27:27 +07:00
Jörg Thalheim
147270c1c9
Merge pull request #109434 from siraben/pkgs-tools-stdenv
pkgs/tools: stdenv.lib -> lib
2021-01-15 10:48:18 +00:00
Ben Siraphob
8c5d37129f pkgs/tools: stdenv.lib -> lib 2021-01-15 17:12:36 +07:00
Louis Bettens
e3dac9b6b3 xpra: 4.0.2 -> 4.0.6 2021-01-11 11:05:59 +01:00
Louis Bettens
a129a5e2d9 xpra: add update script 2021-01-11 11:05:53 +01:00
Graham Christensen
bc49a0815a
utillinux: rename to util-linux 2020-11-24 12:42:06 -05:00
Lassulus
2df0a3e453
Merge pull request #88021 from lourkeur/fix_xpra_doublewrapping
xpra: avoid double-wrapping
2020-08-23 09:09:57 +02:00
Louis Bettens
ead09d7e6e xpra: force XPRA_COMMAND 2020-08-22 22:38:10 +02:00
zowoq
78e324d272 treewide: ffmpeg_4 -> ffmpeg 2020-06-16 18:23:14 -07:00
Michael Lingelbach
e5b7f1325c xpra: 3.0.9 -> 4.0.2 2020-06-08 17:52:18 -07:00
Jaka Hudoklin
fd9d37e271
Merge pull request #87985 from lourkeur/fix_85694
xpra: fix #85694
2020-06-03 14:37:35 +00:00
Louis Bettens
8e5f5a54f2 xpra: avoid double-wrapping
Per manual: https://nixos.org/nixpkgs/manual/#ssec-gnome-common-issues
2020-05-17 17:04:29 +02:00
Louis Bettens
4459844e79 xpra: fix #41106 2020-05-17 16:32:55 +02:00
Louis Bettens
8b92f678f9 xpra: fix #85694 2020-05-16 23:00:21 +02:00
R. RyanTM
057383bbcc xpra: 3.0.8 -> 3.0.9 2020-05-12 22:13:06 -07:00
R. RyanTM
f7b0d0e4f0 xpra: 3.0.7 -> 3.0.8 2020-04-08 00:44:34 +00:00