summaryrefslogtreecommitdiff
path: root/pkgs/by-name/_3 (follow)
Commit message (Expand)AuthorAgeFilesLines
* various: switch to finalAttrs pattern (#483882)Fernando Rodrigues2026-01-301-3/+3
|\
| * various: switch to finalAttrs pattern•••this shouldn't create any rebuilds quantenzitrone2026-01-301-3/+3
* | _3cpio: 0.13.0 -> 0.13.1R. Ryantm2026-01-281-3/+3
|/
* _3cpio: 0.12.0 -> 0.13.0R. Ryantm2026-01-081-3/+3
* maintainers: drop Br1ght0ne•••Reacted to 2 out of 223 maintainer pings in the least 180 days. Wolfgang Walther2025-12-091-1/+0
* 3cpio: mark broken on darwin due to upstream bug (#459851)Aleksana2025-11-141-0/+4
|\
| * 3cpio: mark broken on darwin due to upstream bugflurie2025-11-091-0/+4
* | _3cpio: 0.11.0 -> 0.12.0R. Ryantm2025-11-111-3/+3
|/
* _3llo: fix formatting, qualify lib sectionGuy Chronister2025-11-031-3/+6
* _3llo: migrate to by-nameGuy Chronister2025-11-034-0/+138
* treewide: remove unused with•••Auto-fixed by nixf-diagnose. Wolfgang Walther2025-10-051-1/+1
* various: migrate rev to tagGuy Chronister2025-09-301-1/+1
* _389-ds-base: fix build (#439717)arcnmx2025-09-031-0/+10
* _3cpio: 0.10.2 -> 0.11.0R. Ryantm2025-09-021-3/+3
* _3cpio: 0.8.0 -> 0.10.2R. Ryantm2025-08-141-3/+3
* 3cpio: remove useFetchCargoVendorJared Baur2025-08-131-1/+0
* 3cpio: init at 0.8.0 (#374890)Jared Baur2025-08-131-0/+36
|\
| * 3cpio: init at 0.8.0Jared Baur2025-07-151-0/+36
* | _389-ds-base: 3.1.2 -> 3.1.3 (#422622)Weijia Wang2025-07-261-3/+3
|\ \
| * | _389-ds-base: 3.1.2 -> 3.1.3R. Ryantm2025-07-051-3/+3
| |/
* / treewide: run nixfmt 1.0.0Wolfgang Walther2025-07-241-49/+48
|/
* treewide: migrate rev to tag batch 2 (#419400)Wael Nasreddine2025-06-241-1/+1
|\
| * treewide: migrate rev to tag batch 2Guy Chronister2025-06-241-1/+1
* | treewide: refactor meta section part 2•••adapta-gtk-theme: remove maintainers. Co-authored-by: Shawn8901 <shawn8901@googlemail.com> Guy Chronister2025-06-231-4/+4
|/
* treewide: remove with lib Part 4liberodark2025-06-071-5/+5
* treewide: substitute pname for stringsPeder Bergebakken Sundt2025-05-291-1/+1
* Revert "treewide: replace `rev` with `tag`"•••This reverts commit 65a333600d5c88a98d674f637d092807cfc12253. This wasn't tested for correctness with something like fodwatch [0], and should not have been (self-)merged so quickly, especially without further review. It also resulted in the breakage of at least one package [1] (and that's the one we know of and was caught). A few packages that were updated in between this commit and this revert were not reverted back to using `rev`, but other than that, this is a 1:1 revert. [0]: https://codeberg.org/raphaelr/fodwatch [1]: https://github.com/NixOS/nixpkgs/pull/396904 / 758551e4587d75882aebc21a04bee960418f8ce9 Winter2025-04-082-2/+2
* treewide: replace `rev` with `tag`Pol Dellaiera2025-04-072-2/+2
* _3proxy: 0.9.4 -> 0.9.5 (#388667)misuzu2025-03-151-6/+6
|\
| * _3proxy: 0.9.4 -> 0.9.5misuzu2025-03-101-6/+6
* | treewide: substitute pname for strings•••Inspired by https://github.com/NixOS/nixpkgs/pull/387725#issuecomment-2704943777, script is based on https://github.com/NixOS/nixpkgs/pull/336172 using what i learned in https://github.com/NixOS/nixpkgs/pull/386865, part of https://github.com/NixOS/nixpkgs/issues/346453 Should be zero rebuilds. All candidates were made using: ```shell export NIXPKGS_ALLOW_UNFREE=1 export NIXPKGS_ALLOW_INSECURE=1 export NIXPKGS_ALLOW_BROKEN=1 git-wait restore . test -s packages.json || ( set -x; time nix-env --extra-experimental-features no-url-literals --option system x86_64-linux -f ./. -qaP --json --meta --drv-path --out-path --show-trace --no-allow-import-from-derivation --arg config '{ allowAliases = false; }' > packages.json ) list_attrpath_fname_col() { jq <packages.json 'to_entries[] | select(.value.meta.position==null|not) | "\(.key)\t\(.value.meta.position)"' -r | sed -e "s#\t$(realpath .)/#\t#" | sed -e 's#:\([0-9]*\)$#\t\1#' | grep . | grep -iv haskell | grep -iv /top-level/ | grep -iv chicken | grep pkgs/by-name/ | grep -iv build | grep -E '/(package|default)\.nix' } FLOCKDIR="$(mktemp -d)" N_WORKERS=4 while read attrpath fname col; do grep -qE 'repo *= *("\$\{pname\}"|pname);' "$fname" || continue echo | ( # mutex on fname flock --nonblock 200 || { >&2 echo "failed to aquire lock for $fname" exit 1 } echo "$attrpath" data="$(nix eval --impure --expr 'with import ./. {}; { inherit ('"$attrpath"') pname drvPath passthru meta; drvPath2='"$attrpath"'.src.drvPath; }' --json)" || exit test -n "$data" || exit pname="$(jq <<<"$data" .pname -r)" test -n "$pname" || exit (set -x sd -F '${pname}' "$pname" "$fname" sd -F ' = pname;' " = \"$pname\";" "$fname" ) data2="$(nix eval --impure --expr 'with import ./. {}; { inherit ('"$attrpath"') pname drvPath passthru meta; drvPath2='"$attrpath"'.src.drvPath; }' --json)" if [[ "$data" = "$data2" ]]; then (set -x; git-wait add "$fname") else (set -x; git-wait restore "$fname") exit fi (set -x sd -F ' rec {' ' {' "$fname" ) data3="$(nix eval --impure --expr 'with import ./. {}; { inherit ('"$attrpath"') pname drvPath passthru meta; drvPath2='"$attrpath"'.src.drvPath; }' --json 2>/dev/nul)" if [[ "$data" = "$data3" ]]; then (set -x; git-wait add "$fname") else (set -x; git-wait restore "$fname") fi ) 200>"$FLOCKDIR"/"$(sha256sum - <<<"$fname" | cut -d' ' -f1)".lock & while [[ $(jobs -p | wc -l) -ge $N_WORKERS ]]; do wait -n < <(jobs -p) || true done done < <(list_attrpath_fname_col) wait git restore . time nix-env --extra-experimental-features no-url-literals --option system x86_64-linux -f ./. -qaP --json --meta --drv-path --out-path --show-trace --no-allow-import-from-derivation --arg config '{ allowAliases = false; }' > packages2.json ``` `diff packages{,2}.json` is empty, indicating that no package nor src derivation has changed. I checked and cherry-picked the changes using `GIT_DIFF_OPTS='-u15' git -c interactive.singleKey=true add --patch` Peder Bergebakken Sundt2025-03-111-1/+1
|/
* _389-ds-base: fix cargo deps vendoringBenjamin Staffin2025-02-101-2/+1
* _389-ds-base: 3.0.5 -> 3.1.2R. Ryantm2025-02-101-2/+2
* treewide: migrate to fetchCargoVendor, batch 3•••Cargo 1.84.0 seems to have changed the output format of cargo vendor again, once again invalidating fetchCargoTarball FOD hashes. It's time to fix this once and for all, switching across the board to fetchCargoVendor, which is not dependent on cargo vendor's output format. It should be possible to reproduce this diff. To do so, get the list of files changed by this commit, e.g. with git diff --name-only, then run the following two commands, each with that list of files as their standard input: xargs sed -i 's/fetchCargoTarball/fetchCargoVendor/' cut -d / -f 4 | xargs -n 1 nix-update --version=skip This will take a long time. It might be possible to parallelize it using xargs' -P option. I haven't tested it. Alyssa Ross2025-01-231-2/+2
* 3proxy: fixup build with gcc14misuzu2024-12-231-0/+3
* _389-ds-base: 3.1.1 -> 3.0.5R. Ryantm2024-12-211-3/+3
* treewide: format all inactive Nix files•••After final improvements to the official formatter implementation, this commit now performs the first treewide reformat of Nix files using it. This is part of the implementation of RFC 166. Only "inactive" files are reformatted, meaning only files that aren't being touched by any PR with activity in the past 2 months. This is to avoid conflicts for PRs that might soon be merged. Later we can do a full treewide reformat to get the rest, which should not cause as many conflicts. A CI check has already been running for some time to ensure that new and already-formatted files are formatted, so the files being reformatted here should also stay formatted. This commit was automatically created and can be verified using nix-build https://github.com/infinisil/treewide-nixpkgs-reformat-script/archive/a08b3a4d199c6124ac5b36a889d9099b4383463f.tar.gz \ --argstr baseRev b32a0943687d2a5094a6d92f25a4b6e16a76b5b7 result/bin/apply-formatting $NIXPKGS_PATH Silvan Mosberger2024-12-103-5/+26
* 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. aleksana2024-11-093-0/+139
* _389_ds_base: 2.4.6 -> 3.1.1wxt2024-10-301-4/+4
* _389_ds_base: add passthru.updateScriptwxt2024-10-301-13/+16
* _389_ds_base: nixfmtwxt2024-10-301-78/+86
* _389_ds_base: move to by-namewxt2024-10-301-0/+145