Commit Graph

10 Commits

Author SHA1 Message Date
Nikolay Korotkiy
02a0389205 hareThirdParty.hare-toml: 0.1.2 → 0.2.1 2026-03-01 16:14:08 +04:00
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
NAHO
c8d4dabc43 pkgs: remove optional builtins prefixes from prelude functions
Remove optional builtins prefixes from prelude functions by running:

    builtins=(
      abort
      baseNameOf
      break
      derivation
      derivationStrict
      dirOf
      false
      fetchGit
      fetchMercurial
      fetchTarball
      fetchTree
      fromTOML
      import
      isNull
      map
      null
      placeholder
      removeAttrs
      scopedImport
      throw
      toString
      true
    )

    fd \
      --type file \
      . \
      pkgs \
      --exec-batch sed --in-place --regexp-extended "
        s/\<builtins\.($(
          printf '%s\n' "${builtins[@]}" |
            paste --delimiter '|' --serial -
        ))\>/\1/g
      "

    nix fmt
2025-10-04 19:02:37 +02:00
Coutinho de Souza
50a0e78011 hareThirdParty.hare-toml: 0.1.1 -> 0.1.2 2024-07-16 08:14:03 -03: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
Coutinho de Souza
676a48a5ea hareThirdParty.hare-toml: make use of hareHook 2024-06-04 20:33:07 -03:00
Coutinho de Souza
2cb996b599 hareThirdParty.hare-toml: format with nixfmt-rfc-style 2024-06-04 20:33:07 -03:00
Coutinho de Souza
e2239624d4 hareThirdParty.hare-toml: 0.1.0-unstable-2023-12-27 -> 0.1.1 2024-02-16 18:54:04 -03:00
Gustavo Coutinho de Souza
e2dec02c09 hareThirdParty.hare-toml: 0.1.0 -> 0.1.0-unstable-2023-12-27 2024-02-05 08:26:48 -03:00
Gustavo Coutinho de Souza
a7e7a9ae16 hareThirdParty.hare-toml: init at 0.1.0 2023-12-22 11:51:50 -03:00