Commit Graph

82 Commits

Author SHA1 Message Date
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
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
Weijia Wang
7717a902b1
amazon-ssm-agent: 3.3.859.0 -> 3.3.987.0 (#349994) 2024-11-01 18:17:29 +01:00
Guillaume Girol
206c8f76eb
amdvlk: 2024.Q3.2 -> 2024.Q3.3 (#352094) 2024-11-01 17:43:03 +01:00
Johannes Jöns
834d0bdf7e
amdgpu_top: 0.8.5 -> 0.9.2; add passthru.updateScript (#351840) 2024-10-31 13:23:01 +01:00
Aleksana
5308aeaefa
amneziawg-go: init at 0.2.12 (#331574) 2024-10-30 17:07:33 +08:00
Sebastian Neubauer
d23b69edd8
amdvlk: 2024.Q3.2 -> 2024.Q3.3
2024.Q3.3 was released:
https://github.com/GPUOpen-Drivers/AMDVLK/releases/tag/v-2024.Q3.3
2024-10-29 12:47:48 +01:00
wxt
3c31ae2674 amdgpu-top: 0.8.5 -> 0.9.2 2024-10-28 16:50:35 +08:00
wxt
bec30d6e73 amdgpu-top: add passthru.updateScript 2024-10-28 16:50:35 +08:00
wxt
baaec20a8b amdgpu-top: nixfmt 2024-10-28 16:50:35 +08:00
wxt
6f43bf210a amdgpu-top: move to by-name 2024-10-28 16:50:35 +08:00
linsui
011714d0f3 amberol: 2024.1 -> 2024.2 2024-10-28 14:30:34 +08:00
R. Ryantm
633c028d77 amazon-ssm-agent: 3.3.859.0 -> 3.3.987.0 2024-10-20 10:43:08 +00:00
Sebastian Neubauer
64d0b8b701
amdvlk: workaround glslang 14 issue
Enabling shared libraries in glslang broke amdvlk.
Patching glslang locally fixes it.
2024-10-17 11:52:26 +02: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
Thiago Kenji Okada
2977943aeb
treewide: move packages maintained by aaronjheng to by-name (#346765) 2024-10-07 07:38:59 +01:00
Aaron Jheng
b85511ca3c
treewide: move packages maintained by aaronjheng to by-name 2024-10-07 01:15:33 +00:00
Christina Sørensen
a2641d02a5
amber-lang: 0.3.3-alpha -> 0.3.5-alpha, passthru.updateScript (#340439) 2024-09-27 16:20:31 +02:00
Michael Smith
c166eadb86 amiberry: create desktop file 2024-09-26 21:51:57 +02:00
Michael Smith
b82dd5b617 amiberry: init at 5.7.4 2024-09-26 17:20:48 +02:00
Peder Bergebakken Sundt
9d274bbed8
amberol: 0.10.3 -> 2024.1 (#344195) 2024-09-25 10:37:12 +02: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
linsui
035b0edd66 amberol: polish 2024-09-24 19:44:08 +08:00
linsui
f75c29212e amberol: 0.10.3 -> 2024.1 2024-09-24 19:43:15 +08:00
linsui
6072d74fb1 amberol: format with nixfmt-rfc-style 2024-09-24 19:36:09 +08:00
linsui
b9c9235842 amberol: migrate to by-name 2024-09-24 19:35:52 +08:00
Anthony ROUSSEL
7a386c3cc0 amazon-ec2-utils: migrate to pkgs/by-name, format with nixfmt-rfc-style 2024-09-17 22:02:44 +02:00
nicoo
45b95421fd
lib.fetchers: add hash-normalization helpers (#342072) 2024-09-17 14:59:43 +00:00
nicoo
50ca073e52 amdvlk: sha256hash 2024-09-17 06:34:07 +00: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
053c989b9f amazon-ssm-agent: 3.3.808.0 -> 3.3.859.0 2024-09-09 10:55:53 +00:00
Christina Sørensen
0dc30d7f8f
amber-lang: add passthru.updateScript
Signed-off-by: Christina Sørensen <christina@cafkafk.com>
2024-09-08 17:24:50 +02:00
Christina Sørensen
b471c7e911
amber-lang: 0.3.3-alpha -> 0.3.5-alpha
Signed-off-by: Christina Sørensen <christina@cafkafk.com>
2024-09-08 17:24:44 +02:00
aleksana
71419b8dcf amp: add aleksana to maintainers 2024-09-07 15:58:20 +02:00
aleksana
fdda62acd5 amp: refactor 2024-09-07 15:58:20 +02:00
aleksana
11eb2396e6 amp: fix build due to rust 1.80 update 2024-09-07 15:58:20 +02:00
aleksana
7905b1a5a8 amp: move to pkgs/by-name 2024-09-07 15:58:20 +02:00
Adam C. Stephens
1bcdb97417
amazon-ssm-agent: substitute --replace with --replace-fail (#337268) 2024-09-02 20:32:37 -04:00
github-actions[bot]
b857d97eec
Merge master into staging-next 2024-08-30 18:04:02 +00:00
R. Ryantm
2fe8843678 driversi686Linux.amdvlk: 2024.Q3.1 -> 2024.Q3.2 2024-08-30 14:09:57 +00:00
github-actions[bot]
d62aaef66a
Merge master into staging-next 2024-08-28 00:13:03 +00:00
R. Ryantm
4992478d6e amazon-ssm-agent: 3.3.551.0 -> 3.3.808.0 2024-08-27 12:39:14 +00:00
Roland Coeurjoly
0fca129271 amazon-ssm-agent: substitute --replace with --replace-fail 2024-08-25 17:24:05 +02:00
K900
5c68540f8b Merge remote-tracking branch 'origin/staging-next' into staging 2024-08-22 13:20:38 +03:00
AveryanAlex
7577550772
amneziawg-go: init at 0.2.12 2024-08-22 13:07:45 +03:00
Masum Reza
c0cdeaff88
Merge pull request #331119 from d-brasher/init-amd-ucodegen
amd-ucodegen: init at 0-unstable-2017-06-07
2024-08-19 18:03:43 +05:30
John Titor
a72194fa1a
amdvlk: move to pkgs/by-name 2024-08-17 22:50:24 +05:30
jopejoe1
999df5035f amf: init at 1.4.34-1787253 2024-08-09 08:16:12 +02:00
jopejoe1
63827efb6c amdenc: init at 1.0-1787253 2024-08-09 08:01:11 +02:00
d-brasher
69aeeff2de amd-ucodegen: init at 0-unstable-2017-06-07 2024-08-03 17:07:01 +02:00