nartsisss
d3924417b0
rio: fix build in sandbox on darwin
2024-09-27 03:15:31 +03:00
nartsisss
e0aa44f16e
rio: 0.1.15 -> 0.1.16
2024-09-27 01:16:38 +03: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
DataHearth
f6814d36b6
rio: 0.1.13 -> 0.1.15
2024-09-20 14:22:10 +02:00
Otavio Salvador
49b369e78a
rio: 0.1.10 -> 0.1.13
...
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
2024-09-10 18:37:54 -03:00
TornaxO7
0532e4c174
rio: 0.1.8 -> 0.1.10
2024-08-29 18:32:52 +02:00
R. Ryantm
629deacd20
rio: 0.1.7 -> 0.1.8
2024-08-24 20:27:03 +00:00
R. Ryantm
ff1e3b1977
rio: 0.1.1 -> 0.1.7
2024-08-17 21:59:39 +00:00
Gaetan Lepage
0263009dce
rio: 0.1.0 -> 0.1.1
...
Diff: https://github.com/raphamorim/rio/compare/v0.1.0...v0.1.1
Changelog: https://github.com/raphamorim/rio/blob/v0.1.1/CHANGELOG.md
2024-07-08 14:49:59 +02:00
Gaetan Lepage
fb1ea0c84f
rio: add missing MetalKit darwin dependency + mark as broken
2024-07-08 14:49:59 +02:00
Otavio Salvador
b409bf6a25
rio: 0.0.39 -> 0.1.0
2024-06-10 14:44:03 -03:00
Alexis Hildebrandt
755b915a15
treewide: Remove indefinite article from meta.description
...
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \
| xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
2024-06-09 23:07:45 +02:00
R. Ryantm
be2eda6902
rio: 0.0.37 -> 0.0.39
2024-05-28 04:48:17 +00:00
R. Ryantm
cbcc5f315c
rio: 0.0.36 -> 0.0.37
2024-05-16 09:19:23 +00:00
R. Ryantm
42dd9b11a6
rio: 0.0.35 -> 0.0.36
2024-03-14 19:58:23 +00:00
R. Ryantm
6e7c622f48
rio: 0.0.34 -> 0.0.35
2024-02-27 08:10:03 +00:00
TornaxO7
fa07b7c27d
rio: 0.0.33 -> 0.0.34
2024-01-07 21:57:31 +01:00
TornaxO7
0dad09239d
rio: 0.0.32 -> 0.0.33
2023-12-19 11:45:49 +01:00
TornaxO7
3ae150e098
rio: v0.0.31 -> v0.0.32
2023-12-13 11:28:09 +01:00
TornaxO7
78fcfa8b6c
rio: v0.0.30 -> v0.0.31
2023-12-12 21:33:10 +01:00
TornaxO7
dc522329ea
rio: 0.0.29 -> 0.0.30
2023-12-10 19:05:03 +01:00
TornaxO7
7eca7b73fa
rio: v0.0.28 -> v0.0.29
...
Co-authored-by: Thiago Kenji Okada <thiagokokada@gmail.com>
2023-12-08 14:40:32 +00:00
Otavio Salvador
b06b8857e0
rio: 0.0.27 -> 0.0.28
...
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
2023-11-30 15:33:27 -03:00
Otavio Salvador
efaeb2fdc4
rio: fix Darwin build and move cmake to Linux nativeBuildInputs
...
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
2023-11-19 11:36:36 -03:00
Otavio Salvador
cf7fa1145b
rio: 0.0.19 -> 0.0.27
...
Refs: #260413 .
Fixes : #257334 .
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
2023-11-18 22:24:10 -03:00
Mario Rodas
87c6a971de
rio: fix build on darwin
2023-11-18 15:41:30 +01:00
Anselm Schüler
bf1bd46d9b
rio: set meta.mainProgram
2023-10-08 23:57:30 +02:00
Otavio Salvador
109cf31261
rio: add desktop file, icon
...
Refs: #252814 .
Co-authored-by: Cole Mickens <cole.mickens@gmail.com>
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
2023-09-19 14:23:25 -03:00
Otavio Salvador
b1a6d04742
rio: 0.0.18 -> 0.0.19
...
Fixes : #256113 .
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
2023-09-19 10:45:26 -03:00
Icy-Thought
8ee88235bf
rio: 0.0.16 -> 0.0.18
2023-08-30 22:49:10 +02:00
Otavio Salvador
69a8986058
rio: 0.0.9 -> 0.0.16
...
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
2023-08-03 16:19:22 +00: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
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
08b159c92d
rio: don't use lib.optional with a list
2023-06-22 19:44:05 -04: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
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