summaryrefslogtreecommitdiff
path: root/pkgs/by-name/fd (follow)
Commit message (Expand)AuthorAgeFilesLines
* various: fix pname misuse in urlsquantenzitrone2026-02-051-1/+1
* various: switch to finalAttrs pattern•••this shouldn't create any rebuilds quantenzitrone2026-01-303-9/+9
* fdroidserver: override sqlalchemy to unbreak datasetRobert Schütz2026-01-061-5/+11
* fdt-viewer: init at 0-unstable-2024-12-06Jared Baur2025-12-131-0/+41
* treewide: clean up 'meta = with' pattern•••This commit was created by a combination of scripts and tools: - an ast-grep script to prefix things in meta with `lib.`, - a modified nixf-diagnose / nixf combination to remove unused `with lib;`, and - regular nixfmt. Co-authored-by: Wolfgang Walther <walther@technowledgy.de> Ihar Hrachyshka2025-12-104-15/+15
* treewide: reduce maintenance by globinRobin Gloster2025-12-071-1/+0
* fdroidserver: 2.4.2 -> 2.4.3linsui2025-12-041-2/+2
* treewide: drop figsoda as maintainer (part 3)•••s/^\s*figsoda\s*$// Michael Daniels2025-11-021-1/+0
* maintainers: drop maggesi•••Inactive since 2019/2020. Wolfgang Walther2025-10-171-1/+0
* fdroidserver: 2.4.0 -> 2.4.2 (#433095)Peder Bergebakken Sundt2025-08-261-2/+2
|\
| * fdroidserver: 2.4.0 -> 2.4.2linsui2025-08-121-2/+2
* | fd: 10.2.0 -> 10.3.0R. Ryantm2025-08-261-3/+3
|/
* treewide: remove useFetchCargoVendor usagesTomaSajt2025-07-261-1/+0
* treewide: run nixfmt 1.0.0Wolfgang Walther2025-07-241-10/+9
* fdroidcl: 0.7.0 -> 0.8.1Aaron Jheng2025-07-231-0/+36
* treewide: remove with lib Part 4liberodark2025-06-071-3/+3
* fdroidserver: 2.3.5 -> 2.4.0linsui2025-04-121-2/+2
* 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-084-4/+4
* treewide: replace `rev` with `tag`Pol Dellaiera2025-04-074-4/+4
* fdupes: 2.3.2 -> 2.4.0R. Ryantm2025-03-301-2/+2
* 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-112-5/+5
* fdroidserver: 2.3.4 -> 2.3.5linsui2025-02-081-2/+2
* treewide: migrate to fetchCargoVendor, batch 1•••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/^\(. *\)\(cargoHash\)\b/\1useFetchCargoVendor = true;\n\1cargoHash/' 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-1/+2
* fd: Add matthiasbeyer as maintainer•••Signed-off-by: Matthias Beyer <mail@beyermatthias.de> Matthias Beyer2025-01-031-0/+1
* fdroidserver: 2.3.1 -> 2.3.4linsui2024-12-291-7/+4
* 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-106-45/+110
* fdroidserver: 2.3a2 -> 2.3.0linsui2024-12-031-3/+9
* 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-097-0/+503
* fdroidserver: Add libvirtKryštof Baksa2024-10-281-0/+1
* fdroidserver: provide setuptools for build stepMartin Weinelt2024-10-221-1/+4
* fdroidserver: move to by-namelinsui2024-09-131-0/+105