Commit Graph

9 Commits

Author SHA1 Message Date
Fernando Rodrigues
3562403503 treewide: fetchFromGitea -> fetchFromCodeberg
Most packages that used fetchFromGitea fetch their sources from Codeberg, so might as well migrate them.

The following command was used for this treewide:
```fish
for i in (rg 'fetchFromGitea \{\n *domain = "codeberg.org";' --multiline --files-with-matches)
    sed -z 's/fetchFromGitea {\n *domain = "codeberg.org";/fetchFromCodeberg {/g' $i > $i.tmp && mv $i.tmp $i
    sed -i 's/fetchFromGitea/fetchFromCodeberg/g' $i
end
```

The following paths were manually edited:

* pkgs/by-name/xr/xrsh/package.nix
* pkgs/applications/networking/browsers/librewolf/src.nix
* pkgs/by-name/go/gotosocial/package.nix
* pkgs/by-name/ka/katawa-shoujo-re-engineered/package.nix

Co-authored-by: Gutyina Gergő <gutyina.gergo.2@gmail.com>
Signed-off-by: Fernando Rodrigues <alpha@sigmasquadron.net>
2026-01-31 21:08:16 +11:00
Robert Hensing
3d19784820 haskellPackages.changelog-d: 1.0.1 -> 1.0.2 2025-08-28 14:00:00 +02:00
Silvan Mosberger
84d4f874c2 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 a08b3a4d19.tar.gz \
      --argstr baseRev 78e9caf153
    result/bin/apply-formatting $NIXPKGS_PATH
2024-12-10 20:23:58 +01:00
Francesco Gazzetta
a750f6c588 changelog-d: 1.0 -> 1.0.1
Release: https://codeberg.org/fgaz/changelog-d/releases/tag/v1.0.1
2024-08-20 15:33:18 +02:00
Francesco Gazzetta
31a42541af changelog-d: 0.1-git-2816ddb -> 1.0 2024-05-17 15:45:44 +02:00
Robert Hensing
0ff56d503a haskellPackages.changelog-d: Rename file 2023-11-19 12:44:45 +01:00
Robert Hensing
2e1a099318 changelog-d: init
Move the overrides to top-level (pkgs/by-name).
2023-11-19 12:44:18 +01:00
Robert Hensing
662c001157 haskellPackages.changelog-d: Add basic test 2023-10-31 23:59:14 +01:00
Robert Hensing
054f67065e haskellPackages.changelog-d: init 2023-10-31 23:35:15 +01:00