Commit Graph

18 Commits

Author SHA1 Message Date
Keenan Weaver
c50ca25fc8 ecwolf: Add keenanweaver as a maintainer 2026-05-08 08:15:47 -04:00
Keenan Weaver
ce324852cb ecwolf: Update meta.description
This change makes ecwolf.meta.description one of the ECWolf project’s
official descriptions more closely. The official description was taken
from the first sentence of this page [1] and tweaked to follow Nixpkgs’s
rules for meta.description values [2].

[1]: <https://maniacsvault.net/ecwolf>
[2]: pkgs/README.md
2026-05-08 08:15:47 -04:00
Keenan Weaver
9dc15fabb7 ecwolf: Fetch src from GitHub instead of Bitbucket
The ECWolf project switched from using Bitbucket to using GitHub on
2025-12-26. See <https://maniacsvault.net/entry94>.
2026-05-08 07:59:13 -04:00
Keenan Weaver
ed28d513ca ecwolf: Removed unused fetchpatch
2f530fd78e removed all uses of fetchpatch
from pkgs/by-name/ec/ecwolf/package.nix but did not remove fetchpatch
from the function’s parameter list. This change fixes that mistake.
2026-05-08 07:55:36 -04:00
Stefan Frijters
6d05fc33db ecwolf: move NIX_LDFLAGS into env for structuredAttrs 2026-02-03 12:58:33 +01:00
Gaël James
0e74d2b64c tree-wide: fetchgit, fetchFromGitHub, fetchFromGitLab, fetchFromGitea, fetchFromBitbucket, fetchFromSourcehut: use tag = instead of rev = refs/tags/... 2026-01-15 18:27:42 +01: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
Wolfgang Walther
c6d9b95228 maintainers: drop sander (#468189) 2025-12-10 12:35:14 +00:00
Wolfgang Walther
0cf1b1c518 maintainers: drop sander
Inactive since at least 2024. Was removed as commmiter for inactivity a
while ago. No reaction to maintainer pings for quite some time.
2025-12-05 19:11:04 +01:00
Jason Yundt
2f530fd78e ecwolf: 1.4.1 -> 1.4.2
Release notes: <https://maniacsvault.net/entry93>
2025-10-29 06:12:09 -04:00
Wolfgang Walther
5a0711127c treewide: run nixfmt 1.0.0 2025-07-24 13:55:40 +02:00
Sergei Zimmerman
d1d588d402 ecwolf: sha256 -> hash
It looks like sha256 will eventually be deprecated in favor of hash:
<https://github.com/NixOS/nixpkgs/issues/325892>.
2024-12-26 19:35:07 +03:00
Sergei Zimmerman
32c483ca57 ecwolf: make sure that a tag is fetched
Before this change, ecwolf.src.rev was set to the name of a tag. This is
generally not recommended. It’s better to set rev to
"refs/tags/<tag-name>" [1].

[1]: <https://nixos.org/manual/nixpkgs/stable/#fetchgit>
2024-12-26 19:35:06 +03:00
Sergei Zimmerman
45484b9a5c ecwolf: use finalAttrs
Before this change, the ecwolf package used a recursive attribute set.
In general, it’s recommended that you avoid using recursive attribute
sets [1]. This change makes it so that the ecwolf package uses
finalAttrs instead of a recursive attribute set. As an added bonus, this
also means that ecwolf.src.rev will automatically get updated if someone
calls ecwolf.overrideAttrs and overrides ecwolf.version.

[1]: <https://nix.dev/guides/best-practices.html#recursive-attribute-set-rec>

Co-authored-by: Jason Yundt <jason@jasonyundt.email>
2024-12-26 19:35:06 +03:00
Sergei Zimmerman
81ec266e59 ecwolf: don't use pname in fetchFromBitbucket
This is discouraged. See https://github.com/NixOS/nixpkgs/issues/277994.
2024-12-26 19:35:06 +03:00
Sergei Zimmerman
8ce135bef9 ecwolf: fix build with gcc-14 2024-12-26 19:35:06 +03:00
Silvan Mosberger
4f0dadbf38 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 b32a094368
    result/bin/apply-formatting $NIXPKGS_PATH
2024-12-10 20:26:33 +01:00
aleksana
571c71e6f7 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.
2024-11-09 20:04:51 +08:00