Commit Graph

528 Commits

Author SHA1 Message Date
apfelkuchen06
aa2fc5e1ea foot: 1.14.0 -> 1.15.0
Changelog: https://codeberg.org/dnkl/foot/releases/tag/1.15.0
Diff: https://codeberg.org/dnkl/foot/compare/1.14.0...1.15.0
2023-07-18 16:04:10 +02:00
Henner Zeller
1a0f9c0d25 wayst: unstable-2021-04-05 -> unstable-2023-07-16
Update to latest head.
2023-07-16 18:07:09 -07:00
Otavio Salvador
99d417bab0 rio: 0.0.8 -> 0.0.9
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
2023-07-16 20:20:04 -03:00
Otavio Salvador
0a93242075 rio: add nixosTests support using terminal-emulators existing set
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
2023-07-16 20:20:04 -03:00
Otavio Salvador
638d2b9324 rio: install new terminfo file
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
2023-07-16 20:20:04 -03:00
Otavio Salvador
06a90883fc rio: replace gitUpdater with nix-update-script
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
2023-07-16 20:20:04 -03:00
github-actions[bot]
f4330398cd
Merge master into staging-next 2023-07-13 12:01:13 +00:00
Vladimír Čunát
b77e88f15c
Merge #243211: treewide: disable fortify3 flag on packages
...into staging-next
2023-07-13 10:09:54 +02:00
Kaleb Elwert
714867a88e wezterm: 20230408-112425-69ae8472 -> 20230712-072601-f4abf8fd 2023-07-12 23:49:28 -07:00
Vladimír Čunát
c77a0a323a
Merge branch 'master' into staging-next 2023-07-13 08:30:35 +02:00
Theodore Ni
be0667a60b
kitty: disable fortify3 hardening flag 2023-07-12 20:38:24 -07:00
Adam Stephens
0fa2ff3871
kitty: 0.28.1 -> 0.29.0 2023-07-12 11:19:12 -04:00
github-actions[bot]
d25c057844
Merge master into staging-next 2023-07-11 06:01:13 +00:00
Anderson Torres
f152e6f861 sakura: 3.8.5 -> 3.8.7 2023-07-10 22:34:58 -03:00
github-actions[bot]
1a76e12ddc
Merge master into staging-next 2023-07-06 18:01:11 +00:00
Artturi
0ad0cc5039
Merge pull request #241707 from Artturin/kittyoverridable 2023-07-06 20:09:22 +03:00
Sergei Trofimovich
f047c8ca74
Merge pull request #240687 from r-ryantm/auto-update/xterm
xterm: 382 -> 383
2023-07-05 23:55:32 +01:00
Artturin
787af0f79f kitty: make possible to override goModules
go-modules name had to be changed to goModules so it becomes a env
var (bash vars can't contain -)

enables overriding the build without overriding configurePhase

```
pkgs.kitty.overrideAttrs (finalAttrs: previousAttrs: {
  name = "kitty-master";
  version = "master";
  src = pkgs.fetchFromGitHub {
    owner = "kovidgoyal";
    repo = "kitty";
    rev = "66a2efd191f98a1a5b3c2d4fdc9569204b445a2f";
    sha256 = "sha256-pJuhnJOjGBflHXOOYKrg9/e3c+VGEESZtfka84ARCd4=";
  };
  goModules = (pkgs.buildGoModule {
    pname = "kitty-go-modules";
    inherit (finalAttrs) src version;
    vendorHash = "sha256-eAovZ/7JnvXlnlFyt0skhYJ1Nrzy2XCpRlQvSmWCyaY=";
  }).go-modules;
})
```
2023-07-05 18:20:10 +03:00
Otavio Salvador
5ef952ae13 rio: enable Wayland by default
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
2023-07-03 17:25:27 -03:00
Otavio Salvador
c689e7f7e1 rio: 0.0.7 -> 0.0.8
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
2023-07-03 17:25:27 -03:00
figsoda
50acc2d57a pkgs/applications: replace "${version}" with version 2023-07-02 14:39:50 -04:00
Leona Maroni
e8daa26290
alacritty: 0.12.1 -> 0.12.2 (#240962) 2023-07-01 21:31:51 +02:00
Adam Joseph
64d0029e28 alacritty: --add-rpath instead of --set-rpath
As reported by @blucoat in
https://github.com/NixOS/nixpkgs/issues/219213 alacritty's RPATH is
missing many of the libraries which it links to, including for
example glibc.

The problem was diagnosed by @kchibisov as being caused by
alacritty's use of `--set-rpath` (which completely replaces the
rpath) instead of `--add-rpath` (which adds additional entries to
the rpath):

  https://github.com/NixOS/nixpkgs/issues/219213#issuecomment-1507655801

This commit implements @kchibisov's idea to change `--set-rpath` to
`--add-rpath`:

  https://github.com/NixOS/nixpkgs/issues/219213#issuecomment-1507691822

Closes #219213
2023-06-30 11:19:45 -07:00
R. Ryantm
7272366a52 xterm: 382 -> 383 2023-06-30 08:50:10 +00:00
github-actions[bot]
22e89a1418
Merge staging-next into staging 2023-06-23 00:03:31 +00:00
figsoda
08b159c92d rio: don't use lib.optional with a list 2023-06-22 19:44:05 -04:00
github-actions[bot]
74d0f1c452
Merge staging-next into staging 2023-06-21 00:03:02 +00:00
Otavio Salvador
27543eeb80 rio: 0.0.6.1-unstable-2023-06-18 -> 0.0.7
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
2023-06-20 12:48:50 -03:00
github-actions[bot]
535ef0a591
Merge staging-next into staging 2023-06-19 18:02:35 +00:00
Thiago Kenji Okada
58c54767a1
Merge pull request #237664 from otavio/init-rio
rio: init at 0.0.6.1+2023-06-18
2023-06-19 14:03:16 +00:00
Otavio Salvador
0998d4e4e2 rio: init at 0.0.6.1+2023-06-18
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
2023-06-19 09:07:47 -03:00
github-actions[bot]
81a9b5cb82
Merge staging-next into staging 2023-06-18 12:02:15 +00:00
Sergei Trofimovich
15a51db1a9
Merge pull request #237121 from trofi/xterm-update
xterm: 380 -> 382
2023-06-14 09:20:50 +01:00
Thiago Franco de Moraes
6bf7b51fb8
blackbox-terminal: 0.13.1 -> 0.13.2 2023-06-13 18:35:57 -03:00
Sergei Trofimovich
69cd4fe5ea xterm: 380 -> 382
Changes: https://invisible-island.net/xterm/xterm.log.html#xterm_382
2023-06-10 23:21:16 +01:00
Tobias Mayer
324c3bc11e ctx: 0.pre+date=2021-10-09 -> unstable-2023-06-05 2023-06-10 21:40:26 +00:00
rnhmjoj
c05f72e9ba
rxvt-unicode: 9.30 -> 9.31 2023-06-08 16:36:24 +02:00
Weijia Wang
f3e5af3683 alacritty: unbreak on darwin 2023-06-05 11:09:19 +03:00
Lin Jian
2c8500e8a8 kitty-themes: unstable-2023-03-08 -> unstable-2023-06-01 2023-06-02 11:25:23 +00:00
Dennis Gosnell
e67ee61803
roxterm: remove cdepillabout as maintainer 2023-06-02 07:45:17 +09:00
github-actions[bot]
a2cd4a67fd
Merge master into staging-next 2023-05-26 12:01:27 +00:00
Weijia Wang
5bafafe369 treewide: microsoft_gsl -> microsoft-gsl 2023-05-26 13:43:45 +03:00
Weijia Wang
7eb8a11448
Merge pull request #231979 from r-ryantm/auto-update/xterm
xterm: 379 -> 380
2023-05-24 00:34:05 +03:00
Nick Cao
3d314e82d0
Merge pull request #233388 from wahjava/update-alacritty
alacritty: 0.12.0 -> 0.12.1
2023-05-22 20:32:54 -06:00
Weijia Wang
a77146528d
Merge pull request #233114 from r-ryantm/auto-update/xst
xst: 0.8.4.1 -> 0.9.0
2023-05-23 00:29:57 +03:00
Ashish SHUKLA
a0765981b7
alacritty: 0.12.0 -> 0.12.1 2023-05-22 16:01:05 +02:00
Nikolay Mokrinsky
6a18e4b8a4
wezterm: fix darwin build 2023-05-21 18:31:05 +04:00
R. Ryantm
4bf9a6a42e xst: 0.8.4.1 -> 0.9.0 2023-05-20 23:54:41 +00:00
Doron Behar
0e5c0c5e64 mlterm: disable fb gui due to mlconfig tool issue 2023-05-19 16:20:05 +03:00
R. Ryantm
c6121c157c xterm: 379 -> 380 2023-05-15 05:37:09 +00:00