Commit Graph

45 Commits

Author SHA1 Message Date
Eman Resu
ff094f60ad treewide: replace more singleton license lists 2026-07-15 14:04:39 -04:00
Nikolay Korotkiy
e5aa9219b2 hareThirdParty.hare-png: 0-unstable-2023-09-09 → 0-unstable-2024-03-13, mark as broken 2026-03-01 17:42:32 +04:00
Nikolay Korotkiy
1ae2c4a0a4 hareThirdParty.hare-xml: init at 0.25.2.0 2026-03-01 16:14:10 +04:00
Nikolay Korotkiy
f5c692d0b0 hareThirdParty.hare-http: init at 0.26.0.0 2026-03-01 16:14:09 +04:00
Nikolay Korotkiy
acde0c2cff hareThirdParty.hare-json: 0-unstable-2024-04-19 → 0.26.0.0 2026-03-01 16:14:09 +04:00
Nikolay Korotkiy
02a0389205 hareThirdParty.hare-toml: 0.1.2 → 0.2.1 2026-03-01 16:14:08 +04:00
Nikolay Korotkiy
0ce5e5152e hareThirdParty.hare-ssh: 0-unstable-2023-11-16 → 0.26.0 2026-03-01 16:14:08 +04:00
Nikolay Korotkiy
f8641384ab hareThirdParty.hare-compress: 0-unstable-2023-11-01 → 0.25.2.0 2026-03-01 16:14:08 +04:00
Nikolay Korotkiy
97b85961ce hareThirdParty.hare-ev: 0-unstable-2024-12-29 → 0.26.0.0 2026-03-01 16:14:07 +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
Ihar Hrachyshka
567e8dfd8e 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>
2025-12-10 18:09:49 +01: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
R. Ryantm
720f3e9804 hareThirdParty.hare-ev: 0-unstable-2024-12-13 -> 0-unstable-2024-12-29 2024-12-31 06:20:34 +00:00
R. Ryantm
620b8fb2c7 hareThirdParty.hare-ev: 0-unstable-2024-08-06 -> 0-unstable-2024-12-13 2024-12-21 06:51:03 +00:00
R. Ryantm
8eb1b3b862 hareThirdParty.hare-ev: 0-unstable-2024-07-11 -> 0-unstable-2024-08-06 2024-08-09 06:31:49 +00:00
R. Ryantm
def1da0b7f hareThirdParty.hare-ev: 0-unstable-2024-07-07 -> 0-unstable-2024-07-11 2024-07-18 05:40:51 +00:00
Coutinho de Souza
91f21dddb1 hareThirdParty.hare-ev: 0-unstable-2024-01-04 -> 0-unstable-2024-07-07 2024-07-16 08:18:20 -03:00
Coutinho de Souza
eb252446b5 hareThirdParty.hare-json: 0-unstable-2023-03-13 -> 0-unstable-2024-04-19 2024-07-16 08:14:04 -03: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
49ba155c4a hareThirdParty.hare-ssh: make use of hareHook 2024-06-04 20:33:09 -03:00
Coutinho de Souza
f3057406bf hareThirdParty.hare-ssh: format with nixfmt-rfc-style 2024-06-04 20:33:08 -03: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
ea56874d33 hareThirdParty.hare-png: make use of hareHook 2024-06-04 20:33:06 -03:00
Coutinho de Souza
3653812bec hareThirdParty.hare-png: format with nixfmt-rfc-style 2024-06-04 20:33:05 -03:00
Coutinho de Souza
93b01fe232 hareThirdParty.hare-compress: make use of hareHook 2024-06-04 20:33:04 -03:00
Coutinho de Souza
995664853d hareThirdParty.hare-compress: format with nixfmt-rfc-style 2024-06-04 20:33:04 -03:00
Coutinho de Souza
03622fdd01 hareThirdParty.hare-ev: make use of hareHook 2024-06-04 20:33:01 -03:00
Coutinho de Souza
87168b4bab hareThirdParty.hare-ev: format with nixfmt-rfc-style 2024-06-04 20:33:01 -03:00
Coutinho de Souza
081396ca7d hareThirdParty.hare-json: make use of hareHook 2024-06-04 20:33:00 -03:00
Coutinho de Souza
1ef1988149 hareThirdParty.hare-json: format with nixfmt-rfc-style 2024-06-04 20:32:59 -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
41f9a90326 hareThirdParty.hare-ev: unstable-2023-12-04 -> 0-unstable-2024-01-04
By updating `hare-ev`, the `bonsai` build also succeeds.
2024-02-05 08:26:47 -03:00
Janik
ac91019d44 Merge pull request #276437 from patwid/hare-ssh
hareThirdParty.hare-ssh: init at unstable-2023-11-16
2024-01-16 05:11:46 +01:00
Patrick Widmer
939f41e183 hareThirdParty.hare-ssh: init at unstable-2023-11-16 2024-01-15 20:56:22 +01:00
starzation
9f8f6132e3 hareThirdParty.hare-png: init at unstable-2023-09-09 2024-01-12 17:13:15 +07:00
Nick Cao
b298131eca Merge pull request #277222 from r-ryantm/auto-update/hareThirdParty.hare-ev
hareThirdParty.hare-ev: unstable-2023-10-31 -> unstable-2023-12-04
2023-12-31 10:44:45 -05:00
R. Ryantm
52532b4f18 hareThirdParty.hare-ev: unstable-2023-10-31 -> unstable-2023-12-04 2023-12-28 01:47:37 +00:00
Gustavo Coutinho de Souza
a7e7a9ae16 hareThirdParty.hare-toml: init at 0.1.0 2023-12-22 11:51:50 -03:00
Colin Sane
64121103ec hareThirdParty.hare-ev: init at unstable-2023-10-31
* hareThirdParty.hare-ev: init at unstable-2023-10-30 (#274505)

---------

Co-authored-by: Janik <80165193+Janik-Haag@users.noreply.github.com>
2023-12-20 01:29:04 +01:00
Gustavo Coutinho de Souza
521b9c3d36 hareThirdParty.hare-json: unstable-2023-09-21 -> unstable-2023-03-13
Although the version date is going back in time, the commit,
88256102[1], is newer than the one on e24e5dceb[2], as it may be seen
from the Sourcehut's log[3].

Also refactor the `configurePhase` into `makeFlags`.

[1]: 88256102a9
[2]: e24e5dceb8
[3]: https://git.sr.ht/~sircmpwn/hare-json/log
2023-12-15 07:02:57 -03:00
Gustavo Coutinho de Souza
494bd4255c hareThirdParty.hare-json: move to pkgs/development/hare-third-party 2023-12-15 07:01:17 -03:00
starzation
0530fcc0b1 hareThirdParty.hare-compress: init at unstable-2023-11-01 2023-12-13 18:21:15 +07:00