Commit Graph

134 Commits

Author SHA1 Message Date
Dmitry Kalinkin
a32e0aa07c root5: -fpermissive fix for new compiler, patch for python312 2024-11-17 21:54:46 -05:00
Dmitry Kalinkin
7bee67400f root: apply nixfmt 2024-11-17 15:21:48 -05:00
Dmitry Kalinkin
adea5468dc root: move to by-name 2024-11-17 15:20:42 -05:00
Nick Cao
9809b1b413
rocketchat-desktop: 4.1.1 -> 4.1.2 (#355727) 2024-11-15 09:05:15 -05:00
R. Ryantm
a6fd50da7c rocketchat-desktop: 4.1.1 -> 4.1.2 2024-11-13 18:26:31 +00:00
Wolfgang Walther
cfd186f097
python3Packages: remove left-over "--numprocesses"
Those are provided by pytest-xdist's setup hook automatically anyway.
2024-11-12 21:09:43 +01:00
José Romildo
b3c4badad7 roboto-flex: init at 3.200
The roboto font repository has not been update since 2017, and
recently it has been archived.

Roboto Flex is its continuation, in a brand new repository.

See https://github.com/googlefonts/roboto-flex for more information.

Maintainers of packages that depend on roboto should consider
migrating them to using roboto-flex.
2024-11-10 22:34:09 -03:00
Patka
f0bee68628
robo: 5.0.0 -> 5.1.0 (#354707) 2024-11-09 15:54:17 +01:00
Patka
6fb6032d36
roave-backward-compatibility-check: 8.9.0 -> 8.10.0 (#354705) 2024-11-09 15:53:19 +01:00
aleksana
571c71e6f7 treewide: migrate packages to pkgs/by-name, take 1
We are migrating packages that meet below requirements:

1. using `callPackage`
2. called path is a directory
3. overriding set is empty (`{ }`)
4. not containing path expressions other than relative path (to
makenixpkgs-vet happy)
5. not referenced by nix files outside of the directory, other
than`pkgs/top-level/all-packages.nix`
6. not referencing nix files outside of the directory
7. not referencing `default.nix` (since it's changed to `package.nix`)
8. `outPath` doesn't change after migration

The tool is here: https://github.com/Aleksanaa/by-name-migrate.
2024-11-09 20:04:51 +08:00
Aleksana
3c52fbe8ce
rofi-games: init at 1.10.2 (#301397) 2024-10-28 23:23:32 +08:00
R. Ryantm
7c3e6dfc95 rockcraft: 1.5.3 -> 1.6.0 2024-10-24 13:16:22 +00:00
R. Ryantm
bbc4efa5de rospo: 0.12.1 -> 0.13.0 2024-10-18 05:19:56 +00:00
R. Ryantm
9849a9e272 roddhjav-apparmor-rules: 0-unstable-2024-09-27 -> 0-unstable-2024-10-06 2024-10-08 03:22:34 +00:00
R. Ryantm
4af376271b rosa: 1.2.45 -> 1.2.46 2024-10-07 06:58:24 +00:00
h7x4
9c83480ebd
roslyn-ls: 2.45.17 -> 2.49.25 (#346233) 2024-10-06 14:17:14 +02:00
Jon Seager
c2b844cc18
treewide: update craft-* build tools (#346400) 2024-10-04 13:26:38 +01:00
Jon Seager
3e5165145c
rockcraft: 1.2.3 -> 1.5.3 2024-10-04 11:39:01 +01:00
Konrad Malik
4791aa5015
roslyn-ls: 2.45.17 -> 2.49.25 2024-10-03 15:57:49 +02:00
R. Ryantm
fafa8272c2 roddhjav-apparmor-rules: 0-unstable-2024-09-19 -> 0-unstable-2024-09-27 2024-09-30 01:39:58 +00:00
Weijia Wang
a4a484b812
rofimoji: 6.4.0 -> 6.5.0 (#342744) 2024-09-26 23:47:24 +02:00
TomaSajt
a8edfd4e24
rofi-games: init at 1.10.2 2024-09-26 21:07:19 +02:00
David McFarland
5928601436 roslyn-ls: restore/build for current runtime only 2024-09-24 20:43:24 -03:00
David McFarland
b372a9cae1 roslyn-ls: format with nixfmt 2024-09-24 20:43:23 -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
Aleksana
60c4724818
rosa: 1.2.43 -> 1.2.45 (#343010) 2024-09-22 19:03:42 +08:00
R. Ryantm
06e25e3586 roddhjav-apparmor-rules: 0-unstable-2024-09-08 -> 0-unstable-2024-09-19 2024-09-20 10:25:40 +00:00
Jean-Francois Chevrette
787e994810 rosa: 1.2.43 -> 1.2.45 2024-09-19 07:43:32 -04:00
R. Ryantm
08448801a5 rofimoji: 6.4.0 -> 6.5.0 2024-09-18 07:41:56 +00:00
Anderson Torres
f0e64ce16f treewide: migrate packages maintained by AndersonTorres to by-name
Manual migration for the sake of by-name migration is no longer discouraged
since #340235.
2024-09-16 14:26:47 -03:00
nicoo
2641d97cbf pkgs/by-name: Convert hashes to SRI format
Reproduction script:
	# Bulk rewrite
	./maintainers/scripts/sha-to-sri.py pkgs/by-name
	# Revert some packages which will need manual intervention
	for n in amdvlk azure-cli cargo-profiler corefonts flatito fluxcd gist perf_data_converter protoc-gen-js solana-cli swt verible; do
		git checkout -- "pkgs/by-name/${n:0:2}/${n}"
	done
2024-09-15 11:24:31 +02:00
Masum Reza
f0b257363c
roddhjav-apparmor-rules: 0-unstable-2024-08-30 -> 0-unstable-2024-09-08 (#340561) 2024-09-11 15:34:52 +05:30
Fabian Affolter
fb6b0fc2a7 route-detect: init at 0.8.0
Find authentication (authn) and authorization (authz) security bugs in
web application routes

https://github.com/mschwager/route-detect
2024-09-10 19:58:51 +02:00
R. Ryantm
edafdd7316 roddhjav-apparmor-rules: 0-unstable-2024-08-30 -> 0-unstable-2024-09-08 2024-09-08 17:25:49 +00:00
R. Ryantm
b43242337a roave-backward-compatibility-check: 8.8.0 -> 8.9.0 2024-09-08 13:12:06 +00:00
Peder Bergebakken Sundt
7d86294055
roslyn-ls: 4.12.0-1.24359.11 -> 4.12.0-2.24422.6 (#338396) 2024-09-07 19:56:37 +02:00
David McFarland
2d43ecc400 buildDotnetModule: clean-up stdenv attributes
- stop binding attributes we don't care about (e.g. name, doCheck)
- remove attributes we handle in nix (e.g. useAppHost)
- inherit attributes with default values (e.g. packNupkg)
2024-09-05 23:46:23 -03:00
David McFarland
e530139caa buildDotnetModule: fix tool manifest detection 2024-09-05 22:47:38 -03:00
Sandro
bff70a9a0a
rospo: init at 0.12.1 (#332753) 2024-09-01 18:23:53 +02:00
R. Ryantm
e00303b3bf roddhjav-apparmor-rules: 0-unstable-2024-08-26 -> 0-unstable-2024-08-30 2024-09-01 07:09:11 +00:00
Nick Cao
4b1f78918e
rofimoji: 6.3.2 -> 6.4.0 (#338501) 2024-08-31 09:47:49 -04:00
Michael Dormann
ee7e849d1d roon-tui: 0.3.0 -> 0.3.2 2024-08-31 11:42:07 +02:00
R. Ryantm
6355a6cd3f rofimoji: 6.3.2 -> 6.4.0 2024-08-30 23:47:12 +00:00
Konrad Malik
d7c97a26b2
roslyn-ls: 4.12.0-1.24359.11 -> 4.12.0-2.24422.6 2024-08-30 14:44:25 +02:00
R. Ryantm
24b3b37507 roddhjav-apparmor-rules: 0-unstable-2024-08-06 -> 0-unstable-2024-08-26 2024-08-26 20:23:57 +00:00
R. Ryantm
03dcf724e3 robotframework-tidy: 4.13.0 -> 4.14.0 2024-08-24 09:09:54 +00:00
David McFarland
f098bd1f4c roslyn-ls: update dependencies for dotnet 9.0-preview.7 2024-08-21 11:37:45 -03:00
Masum Reza
696a4e3758
Merge pull request #334211 from r-ryantm/auto-update/roddhjav-apparmor-rules
roddhjav-apparmor-rules: 0-unstable-2024-08-02 -> 0-unstable-2024-08-06
2024-08-13 08:11:50 +05:30
R. Ryantm
dcfec37444 roddhjav-apparmor-rules: 0-unstable-2024-08-02 -> 0-unstable-2024-08-06 2024-08-12 19:28:50 +00:00
Jean-Francois Chevrette
96f040ea07 rosa: 1.2.39 -> 1.2.43 2024-08-12 14:32:22 -04:00