Commit Graph

29 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
Austin Horstman
3aea494127
avalanchego: 1.11.11 -> 1.12.0-initial-poc.6 (#351441) 2024-11-07 08:21:00 -06:00
Sarah Clark
409fcceb99 avbroot: migrate to new apple sdk structure 2024-11-06 20:05:20 -08:00
wxt
0720e51827
avalanchego: 1.11.11 -> 1.12.0-initial-poc.6 2024-11-07 11:48:39 +08:00
wxt
36e71377e0
avalanchego: nixfmt 2024-11-07 11:07:16 +08:00
wxt
de9822cc8a
avalanchego: move to by-name 2024-11-07 11:07:16 +08:00
R. Ryantm
320122395b avro-tools: 1.11.3 -> 1.12.0 2024-10-29 13:26:44 +00:00
Alyssa Ross
fc93b376c2
avml: use OpenSSL from Nixpkgs 2024-09-28 17:34:20 +02:00
Weijia Wang
b22c118641
arvo-tools: move to by-name and modernize derivation (#343860) 2024-09-27 02:48:58 +02:00
David McFarland
2c97d67f62 dotnet: split sdk packages by platform 2024-09-24 20:43:24 -03: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
Mutsuha Asada
cc07df2d28
avro-tools: moved to by-name 2024-09-23 12:17:56 +09:00
David McFarland
e33bdf8921 avalonia: 11.0.10 -> 11.0.11 2024-09-17 01:14:27 -03:00
David McFarland
3aad599551 avalonia: init at 11.0.10 2024-09-17 01:14:27 -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
13c7cdc211
av1an: vapoursynth support (#330994) 2024-09-05 09:51:58 +05:30
seth
99e0d5c19b
av1an: filter updateScript
Upstream makes tags like `latest` that aren't stable releases
2024-08-25 22:57:59 -04:00
seth
ee8df28f48
av1an: 0.4.2 -> 0.4.3
Changelog: https://github.com/master-of-zen/Av1an/releases/tag/0.4.3
Diff: https://github.com/master-of-zen/Av1an/compare/0.4.2...0.4.3
2024-08-25 22:32:41 -04:00
seth
fb2ba534a4 av1an: fix building against rust 1.80.0
https://github.com/NixOS/nixpkgs/issues/332957
2024-08-15 07:47:13 +02:00
FlyingWombat
09850cda27 av1an: vapoursynth support
Corrected wrapper entries:
 - Need to override vapoursynth with `vapoursynth.withPlugins` for av1an to be able to use VS plugins. Changed PYTHON_PATH accordingly.  Passing `pkgs.vapoursynth` to `python3Packages.makePythonPath` makes an incorrect path entry, resulting in segfault when the program is run.
 - Need LD_LIBRARY_PATH to use VS plugins (e.g. ffms2 and lsmash, the recommended chunking method). Otherwise get e.g. `Error: FFMS2 is not installed, but it was specified as the chunk method`.
 - Need vapoursynth in PATH to use VS based chunking methods or VS script as input. At least, `vspipe` binary needs to be visible in PATH.

Add mkvtoolnix option; it is the recommended concatenation method.
2024-08-11 10:12:07 -06:00
Thomas Gerbet
aa1fde65af
avml: init at 0.14.0
https://github.com/microsoft/avml
add update script
Signed-off-by: John Titor <50095635+JohnRTitor@users.noreply.github.com>
2024-08-02 12:50:26 +05:30
Masum Reza
5f36c515d3
Merge pull request #322223 from oluceps/avbroot
avbroot: init at 3.4.1
2024-07-31 22:20:23 +05:30
oluceps
4c321e4889
avbroot: init at 3.4.1
Signed-off-by: John Titor <50095635+JohnRTitor@users.noreply.github.com>
2024-07-31 19:14:47 +05:30
Aleksana
ea82a4780a
Merge pull request #292948 from getchoo/pkgs/av1an/init
av1an: init at 0.4.2
2024-07-24 11:30:45 +08:00
seth
767cf0c714
av1an: init at 0.4.2 2024-06-12 18:49:46 -04: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
jopejoe1
860a514288 avisynthplus: init at 3.7.3 2024-02-28 22:07:45 +01:00
Ameer Taweel
54a8f13f93 avr-sim: init at 2.8 2023-11-30 08:19:36 +01:00