1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-18 03:30:45 +00:00
Commit graph

94 commits

Author SHA1 Message Date
Janne Heß 28f451d316
rustdesk-flutter: 1.3.1 -> 1.3.2 2024-10-29 13:40:17 +01:00
Gaétan Lepage 2199bae505
ruff-lsp: ruff is now a python package (#350729) 2024-10-26 10:46:14 +02:00
Arthur Gautier 30332725db ruff-lsp: ruff is now a python package 2024-10-25 09:28:21 -07:00
Gaetan Lepage 8562da7f31 ruff: 0.7.0 -> 0.7.1
Diff: https://github.com/astral-sh/ruff/compare/refs/tags/0.7.0...0.7.1

Changelog: https://github.com/astral-sh/ruff/releases/tag/0.7.1
2024-10-25 18:01:40 +02:00
Gaétan Lepage 90c84a9818
ruff: move to buildPythonPackage (#350654) 2024-10-25 17:59:54 +02:00
Norbert Melzer 9d17773f8d
rustic: 0.9.3 -> 0.9.4 (#351049) 2024-10-25 08:31:35 +02:00
Noa Aarts 77522b3c10
rustic: 0.9.3 -> 0.9.4 2024-10-25 00:40:35 +02:00
Arthur Gautier 6f3c4aabc1 ruff: move to buildPythonPackage 2024-10-24 15:36:58 -07:00
aleksana d6beb22352 rusty-bash: init at 0.8.5 2024-10-24 17:11:51 +08:00
Pol Dellaiera f85482fdc8
rustdesk: 1.3.0 -> 1.3.1 (#349891) 2024-10-23 14:12:32 +02:00
Austin Horstman 2cf171f9fc
rustdesk: mark darwin bad platforms
Requires some more work to support darwin, marking as a bad platform,
for now.
2024-10-22 11:42:02 -05:00
Austin Horstman 2e30c26027
rustdesk: 1.3.0 -> 1.3.1 2024-10-22 11:42:02 -05:00
Philip White 338743fe34
rustic: 0.9.1 -> 0.9.3 2024-10-19 15:00:46 -07:00
phanirithvij 3581a1650f russ: 0.4.0 -> 0.5.0, move to by-name
Signed-off-by: phanirithvij <phanirithvij2000@gmail.com>
2024-10-18 17:02:06 +05:30
Gaetan Lepage 3e1b768ec7 python312Packages.ruff-lsp: 0.0.57 -> 0.0.58
Diff: https://github.com/astral-sh/ruff-lsp/compare/refs/tags/v0.0.57...v0.0.58

Changelog: https://github.com/astral-sh/ruff-lsp/releases/tag/v0.0.58
2024-10-17 22:11:35 +02:00
Gaetan Lepage fe23a39256 ruff: 0.6.9 -> 0.7.0
Diff: https://github.com/astral-sh/ruff/compare/refs/tags/0.6.9...0.7.0

Changelog: https://github.com/astral-sh/ruff/releases/tag/0.7.0
2024-10-17 21:41:43 +02:00
Norbert Melzer 8af94f7ca2
rustic: 0.8.1 -> 0.9.1 (#346508) 2024-10-08 12:07:39 +02:00
phanirithvij d1157d70bc runme: 3.7.1 -> 3.8.3
Signed-off-by: phanirithvij <phanirithvij2000@gmail.com>
2024-10-06 10:35:52 +05:30
phanirithvij e771cab2f9 runme: nixfmt
Signed-off-by: phanirithvij <phanirithvij2000@gmail.com>
2024-10-06 10:35:08 +05:30
phanirithvij 8440e7f343 runme: move to pkgs/by-name
Signed-off-by: phanirithvij <phanirithvij2000@gmail.com>
2024-10-06 09:58:08 +05:30
David Knaack 81f3c68b92 rustic: 0.8.1 -> 0.9.1 2024-10-04 22:25:08 +02:00
Gaetan Lepage c6e0f3d20c ruff: 0.6.8 -> 0.6.9
Diff: https://github.com/astral-sh/ruff/compare/refs/tags/0.6.8...0.6.9

Changelog: https://github.com/astral-sh/ruff/releases/tag/0.6.9
2024-10-04 16:13:00 +02:00
Gaetan Lepage 8f609d2ef0 ruff: 0.6.7 -> 0.6.8
Diff: https://github.com/astral-sh/ruff/compare/refs/tags/0.6.7...0.6.8

Changelog: https://github.com/astral-sh/ruff/releases/tag/0.6.8
2024-09-26 17:05:33 +02:00
Janne Heß 02695b7412
rustdesk-flutter: 1.3.0 -> 1.3.1 (#343904) 2024-09-25 10:00:10 +02:00
Artturin 63fa53d97c treewide: reformat files which need reformatting after
`treewide: replace stdenv.is with stdenv.hostPlatform.is`
2024-09-25 00:04:39 +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
Bot_wxt1221 a0a0b4d63b
rustdesk-flutter: add missing libayatana-appindicator patch (#343742)
* rustdesk-flutter: nixfmt

* rustdesk-flutter: add missing libayatana-appindicator patch
2024-09-23 09:02:59 +02:00
Gaetan Lepage 5b6c4e972b ruff: 0.6.6 -> 0.6.7
Diff: https://github.com/astral-sh/ruff/compare/refs/tags/0.6.6...0.6.7

Changelog: https://github.com/astral-sh/ruff/releases/tag/0.6.7
2024-09-22 12:23:15 +02:00
Pol Dellaiera ce2fedc775
ruff-lsp: 0.0.56 -> 0.0.57 (#343248) 2024-09-20 19:16:24 +02:00
Gaetan Lepage 02f584f37f ruff-lsp: 0.0.56 -> 0.0.57
Diff: https://github.com/astral-sh/ruff-lsp/compare/refs/tags/v0.0.56...v0.0.57

Changelog: https://github.com/astral-sh/ruff-lsp/releases/tag/v0.0.57
2024-09-20 13:34:08 +02:00
Ilan Joselevich 7723b79623
rush-parallel: init at 0.5.6 (#342875) 2024-09-20 13:53:52 +03:00
Gaetan Lepage 010dfa5066 ruff: 0.6.5 -> 0.6.6
Diff: https://github.com/astral-sh/ruff/compare/refs/tags/0.6.5...0.6.6

Changelog: https://github.com/astral-sh/ruff/releases/tag/0.6.6
2024-09-20 08:12:45 +02:00
Ilan Joselevich c18a1cb47e
rush-parallel: init at 0.5.6
https://github.com/shenwei356/rush
2024-09-18 23:10:18 +03:00
Sandro 7c1e688ff4
ruff: 0.6.4 -> 0.6.5 (#341674) 2024-09-15 18:58:48 +02:00
Gaetan Lepage ec1e6cd048 ruff: 0.6.4 -> 0.6.5
Diff: https://github.com/astral-sh/ruff/compare/refs/tags/0.6.4...0.6.5

Changelog: https://github.com/astral-sh/ruff/releases/tag/0.6.5
2024-09-15 11:57:36 +02: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
R. Ryantm 94909c1166 rustic: 0.8.0 -> 0.8.1 2024-09-10 13:08:26 +00:00
éclairevoyant da2af884f5
rustlings: add darwin support by adding CoreServices to buildInputs (#339263) 2024-09-09 13:30:07 +00:00
R. Ryantm b957ab04ce rustmission: 0.4.3 -> 0.5.0 2024-09-08 14:58:51 +00:00
Gaetan Lepage 8189ad34e6 ruff-lsp: 0.0.55 -> 0.0.56
Diff: https://github.com/astral-sh/ruff-lsp/compare/refs/tags/v0.0.55...v0.0.56

Changelog: https://github.com/astral-sh/ruff-lsp/releases/tag/v0.0.56
2024-09-06 15:19:52 +02:00
Gaetan Lepage 7ddcfacdbe ruff: 0.6.3 -> 0.6.4
Diff: https://github.com/astral-sh/ruff/compare/refs/tags/0.6.3...0.6.4

Changelog: https://github.com/astral-sh/ruff/releases/tag/0.6.4
2024-09-06 10:46:56 +02:00
eymeric 3a264a6cdd rustdesk: 1.2.3 -> 1.3.0 2024-09-05 17:56:37 +02:00
Mastermindaxe 906e5696a6 rustlings: add darwin support by adding CoreServices to buildInputs 2024-09-03 16:47:17 +02:00
Bernardo Meurer fc13b0acdb
Merge branch 'master' into add-rutorrent-service 2024-09-03 01:18:16 +00:00
R. Ryantm e181f31865 rustlings: 6.2.0 -> 6.3.0 2024-08-30 02:46:49 +00:00
Gaétan Lepage 324dbfee6b
ruff: 0.6.2 -> 0.6.3 (#338204) 2024-08-29 22:23:48 +02:00
Donovan Glover cc223bad7e
rustic: 0.7.0-unstable-2024-08-10 -> 0.8.0 (#337535) 2024-08-29 18:37:09 +00:00
Atemu ff4a5fc769
rustlings: init at 6.2.0 (#334610) 2024-08-29 17:50:02 +02:00
Gaetan Lepage 976d530753 ruff: 0.6.2 -> 0.6.3
Diff: https://github.com/astral-sh/ruff/compare/refs/tags/0.6.2...0.6.3

Changelog: https://github.com/astral-sh/ruff/releases/tag/0.6.3
2024-08-29 17:22:28 +02:00
0x4A6F b4f7fb7143
rustdesk-flutter: 1.2.7 -> 1.3.0 and make reproducible (#336315) 2024-08-29 13:54:47 +02:00