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
Brian McGee
717248d728
treefmt2: 2.0.5 -> 2.1.0 ( #354455 )
2024-11-08 22:20:21 +01:00
Reno Dakota
52bf1163fa
treewide: use getLib when accessing clang / libclang / stdenv.cc.cc
...
In preparation to eliminate the lib output for the unwrapped clang, use
`lib.getLib` to access the `lib` output.
2024-11-07 10:27:41 +00:00
Aleksana
36464b3492
trunk: fix build on darwin ( #353076 )
2024-11-06 21:55:09 +08:00
Aleksana
bb4e7c520d
trunk-recorder: init at 5.0.1 ( #350010 )
2024-11-06 18:45:29 +08:00
Alexander Sieg
f9310ec1a9
trunk: fix build on darwin; move to by-name
2024-11-03 13:49:05 +01:00
github-actions[bot]
dee80e3490
Merge master into staging-next
2024-10-30 00:14:27 +00:00
Nikolay Korotkiy
5a224867a8
trayscale: migrate to by-name
2024-10-27 18:49:10 +04:00
github-actions[bot]
bafb3e4e13
Merge master into staging-next
2024-10-23 12:05:38 +00:00
Fabian Affolter
8d17e4ebf3
trickest-cli: 1.8.2 -> 1.8.3 ( #350565 )
2024-10-23 08:22:51 +02:00
github-actions[bot]
723e1a67de
Merge master into staging-next
2024-10-23 00:14:18 +00:00
R. Ryantm
c022ecdd9c
trickest-cli: 1.8.2 -> 1.8.3
2024-10-22 22:42:39 +00:00
Anders Rytter Hansen
6385bdec77
tradingview: 2.9.2 -> 2.9.3
2024-10-21 21:42:14 +02:00
PapayaJackal
7c0a50390e
trunk-recorder: init at 5.0.1
2024-10-20 19:00:32 +00:00
github-actions[bot]
2d65a9d98d
Merge master into staging-next
2024-10-17 00:14:14 +00:00
Someone
68ff8d1a66
python3Packages.triton*: 2.1.0 -> 3.0.0 ( #328247 )
2024-10-16 22:43:07 +00:00
SomeoneSerge
0daa24192c
triton-llvm: patch for glibc 2.40 support
2024-10-16 14:05:36 +00:00
Dennis Wuitz
5ed0e25be8
python312Packages.triton*: repair package
2024-10-15 19:53:56 +00:00
Bobby Rong
bd9782dc89
localsearch: Renamed from tracker-miners
...
The project renamed in 3.8.
This commit is done by hand.
2024-10-14 20:54:11 +08:00
Bobby Rong
182c15df70
tracker-miners: 3.7.3 → 3.8.beta (localsearch)
...
https://gitlab.gnome.org/GNOME/localsearch/-/compare/3.7.3...3.8.beta
miner_rss is disabled by default.
Changelog-reviewed-by: Bobby Rong <rjl931189261@126.com>
2024-10-14 20:54:08 +08:00
Fabián Heredia Montiel
ccec93c1c7
treewide: replace webkitgtk to webkitgtk_4_0
...
sed -i 's/ webkitgtk\b/ webkitgtk_4_0/g' pkgs/**.nix
sed -i 's/(webkitgtk\b/(webkitgtk_4_0/g' pkgs/**.nix
sed -i 's/\.webkitgtk\b/.webkitgtk_4_0/g' pkgs/**.nix
webkitgtk is currently pointing to that specific ABI version but the
alias is going to start warning
2024-10-11 17:23:43 -06:00
R. Ryantm
0ad3cfccf9
trealla: 2.56.19 -> 2.57.1
2024-10-07 23:42:38 +00:00
R. Ryantm
592eaa5834
troubadix: 24.9.4 -> 24.10.0
2024-10-06 15:25:25 +00:00
Peder Bergebakken Sundt
eca282a7d6
tradingview: 2.8.1 -> 2.9.2 ( #345433 )
2024-10-06 02:50:44 +02:00
Anders Rytter Hansen
7f4f731b85
tradingview 2.8.1 -> 2.9.2
2024-09-30 08:13:29 +02:00
R. Ryantm
18e87bbcd8
trealla: 2.56.15 -> 2.56.19
2024-09-30 01:11:58 +00:00
R. Ryantm
3bd8b06582
troubadix: 24.9.2 -> 24.9.4
2024-09-29 00:35:21 +00: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
R. Ryantm
e33d45f306
trealla: 2.55.41 -> 2.56.15
2024-09-20 09:43:01 +00:00
R. Ryantm
87ad997418
troubadix: 24.8.2 -> 24.9.2
2024-09-18 11:48:41 +00:00
Aleksana
a2cad4db0b
treewide: migrate packages to by-name ( #341412 )
2024-09-17 11:17:16 +08:00
h7x4
19d0604738
trexio: 2.4.2 -> 2.5.0 ( #341492 )
2024-09-16 23:06:11 +02: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
R. Ryantm
47b0dfe793
trexio: 2.4.2 -> 2.5.0
2024-09-13 05:35:12 +00:00
Nick Cao
402fa217c2
trunk-io: 1.3.1 -> 1.3.2 ( #340457 )
2024-09-09 09:11:18 -04:00
Aaron Jheng
7d19fce176
trunk-io: 1.3.1 -> 1.3.2
2024-09-09 02:16:41 +00:00
R. Ryantm
549a049752
trealla: 2.55.31 -> 2.55.41
2024-09-08 16:58:32 +00:00
Aaron Jheng
fcf3c29623
trunk-io: move to by-name
2024-09-08 07:53:14 +00:00
R. Ryantm
69b0e90ea8
trealla: 2.55.25 -> 2.55.31
2024-09-01 06:24:54 +00:00
R. Ryantm
e7cfe32699
troubadix: 24.8.0 -> 24.8.2
2024-08-31 06:36:34 +00:00
R. Ryantm
a48228d5bb
trealla: 2.55.22 -> 2.55.25
2024-08-26 19:34:16 +00:00
Sandro
084aa0318b
Merge pull request #335795 from tengkuizdihar/treedome_051
...
treedome: 0.4.5 -> 0.5.1
2024-08-21 21:34:47 +02:00
Brian McGee
600d6198d9
treefmt2: 2.0.4 -> 2.0.5 ( #336307 )
2024-08-21 13:47:51 +02:00
Peder Bergebakken Sundt
fcdecc256a
treewide: change ${pname}
to string literal ( #336172 )
...
* adwaita-icon-theme: change `${pname}` to string literal
* alp: change `${pname}` to string literal
* alsa-oss: change `${pname}` to string literal
* alsa-plugins: change `${pname}` to string literal
* alsa-ucm-conf: change `${pname}` to string literal
* alsa-utils: change `${pname}` to string literal
* anyrun: change `${pname}` to string literal
* assemblyscript: change `${pname}` to string literal
* audiobookshelf: change `${pname}` to string literal
* baobab: change `${pname}` to string literal
* braa: change `${pname}` to string literal
* brill: change `${pname}` to string literal
* centrifugo: change `${pname}` to string literal
* cheese: change `${pname}` to string literal
* cljfmt: change `${pname}` to string literal
* coppwr: change `${pname}` to string literal
* cosmic-edit: change `${pname}` to string literal
* cosmic-files: change `${pname}` to string literal
* cosmic-store: change `${pname}` to string literal
* cosmic-term: change `${pname}` to string literal
* crate2nix: change `${pname}` to string literal
* cups-kyocera-3500-4500: change `${pname}` to string literal
* dbqn: change `${pname}` to string literal
* dconf-editor: change `${pname}` to string literal
* devhelp: change `${pname}` to string literal
* dmarc-report-converter: change `${pname}` to string literal
* engage: change `${pname}` to string literal
* eog: change `${pname}` to string literal
* evolution-data-server-gtk4: change `${pname}` to string literal
* find-billy: change `${pname}` to string literal
* firefly-iii: change `${pname}` to string literal
* fuchsia-cursor: change `${pname}` to string literal
* geary: change `${pname}` to string literal
* ghex: change `${pname}` to string literal
* gitg: change `${pname}` to string literal
* glasskube: change `${pname}` to string literal
* gnome.gnome-autoar: change `${pname}` to string literal
* gnome.gnome-calculator: change `${pname}` to string literal
* gnome.gnome-calendar: change `${pname}` to string literal
* gnome.gnome-common: change `${pname}` to string literal
* gnome.gnome-dictionary: change `${pname}` to string literal
* gnome.gnome-disk-utility: change `${pname}` to string literal
* gnome.gnome-font-viewer: change `${pname}` to string literal
* gnome.gnome-keyring: change `${pname}` to string literal
* gnome.gnome-screenshot: change `${pname}` to string literal
* gnome.gnome-system-monitor: change `${pname}` to string literal
* gnome.seahorse: change `${pname}` to string literal
* gnome.simple-scan: change `${pname}` to string literal
* gnome.sushi: change `${pname}` to string literal
* gnome.totem: change `${pname}` to string literal
* gnome.yelp: change `${pname}` to string literal
* gnome.yelp-xsl: change `${pname}` to string literal
* gnucap-full: change `${pname}` to string literal
* goredo: change `${pname}` to string literal
* guile-semver: change `${pname}` to string literal
* halo: change `${pname}` to string literal
* intiface-central: change `${pname}` to string literal
* intune-portal: change `${pname}` to string literal
* iscc: change `${pname}` to string literal
* jetbrains-toolbox: change `${pname}` to string literal
* jnr-posix: change `${pname}` to string literal
* keymapp: change `${pname}` to string literal
* libation: change `${pname}` to string literal
* libeduvpn-common: change `${pname}` to string literal
* libmamba: change `${pname}` to string literal
* littlefs-fuse: change `${pname}` to string literal
* logseq: change `${pname}` to string literal
* lxgw-wenkai-tc: change `${pname}` to string literal
* microsoft-identity-broker: change `${pname}` to string literal
* minetest-mapserver: change `${pname}` to string literal
* msalsdk-dbusclient: change `${pname}` to string literal
* neverest: change `${pname}` to string literal
* nf-test: change `${pname}` to string literal
* numbat: change `${pname}` to string literal
* pdf2odt: change `${pname}` to string literal
* plemoljp: change `${pname}` to string literal
* plemoljp-hs: change `${pname}` to string literal
* plemoljp-nf: change `${pname}` to string literal
* pocket-updater-utility: change `${pname}` to string literal
* proto: change `${pname}` to string literal
* pw3270: change `${pname}` to string literal
* ratchet: change `${pname}` to string literal
* read-it-later: change `${pname}` to string literal
* redmine: change `${pname}` to string literal
* regina: change `${pname}` to string literal
* regripper: change `${pname}` to string literal
* revolt-desktop: change `${pname}` to string literal
* rs: change `${pname}` to string literal
* signaturepdf: change `${pname}` to string literal
* sonarlint-ls: change `${pname}` to string literal
* srgn: change `${pname}` to string literal
* stackit-cli: change `${pname}` to string literal
* substudy: change `${pname}` to string literal
* swayosd: change `${pname}` to string literal
* synthesia: change `${pname}` to string literal
* tarlz: change `${pname}` to string literal
* termcap: change `${pname}` to string literal
* tinycompress: change `${pname}` to string literal
* tracexec: change `${pname}` to string literal
* treefmt2: change `${pname}` to string literal
* udev-gothic: change `${pname}` to string literal
* udev-gothic-nf: change `${pname}` to string literal
* vvvvvv: change `${pname}` to string literal
* yggdrasil: change `${pname}` to string literal
* zsync: change `${pname}` to string literal
2024-08-20 15:56:55 -07:00
nixpkgs-merge-bot[bot]
de8fa24d53
Merge pull request #336024 from r-ryantm/auto-update/trealla
...
trealla: 2.55.19 -> 2.55.22
2024-08-20 16:48:50 +00:00
tengkuizdihar
85a59e084e
treedome: 0.4.5 -> 0.5.1
2024-08-20 17:22:05 +07:00
R. Ryantm
2b733abd83
trealla: 2.55.19 -> 2.55.22
2024-08-20 08:34:31 +00:00
R. Ryantm
e8443c1626
troubadix: 24.7.4 -> 24.8.0
2024-08-18 21:50:47 +00:00
R. Ryantm
74ee0b1870
tracexec: 0.5.1 -> 0.5.2
2024-08-13 09:43:26 +00:00