Commit Graph

125 Commits

Author SHA1 Message Date
Winston R. Milling
02cc2a7b03
legcord: 1.0.2 -> 1.0.4
https://github.com/Legcord/Legcord/releases/tag/v1.0.4
2024-11-18 11:16:38 -06:00
Sandro
d03497e4ea
ledfx: 2.0.104 -> 2.0.105 (#356728) 2024-11-18 12:55:51 +01:00
R. Ryantm
796e83e99b ledfx: 2.0.104 -> 2.0.105 2024-11-17 14:58:02 +00:00
tu-maurice
d55690cba4 lektor: fix build
A test failed with the upgrade of a newer Pillow version.
This patch from upstream fixes this.
2024-11-16 22:50:32 +01:00
github-actions[bot]
00b1e226f7
Merge master into staging-next 2024-11-12 06:05:05 +00:00
jthulhu
dd9dc00de2
maintainers: add jthulhu 2024-11-11 08:33:54 +01:00
Emily
ce788776a5 Merge master into staging-next 2024-11-09 12:51:01 +00: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
github-actions[bot]
f3327c0d2a
Merge master into staging-next 2024-11-09 00:13:55 +00:00
R. Ryantm
201990c787 leetgo: 1.4.9 -> 1.4.10 2024-11-08 13:01:41 +00:00
Vladimír Čunát
b048be052c
Reapply "less: Fix withSecure regression"
This reverts commit 6df0b10df6.
This change was originally merged as PR #352298
but it got moved to staging here.
2024-11-05 08:11:55 +01:00
Vladimír Čunát
6df0b10df6
Revert "less: Fix withSecure regression" 2024-11-04 12:00:21 +01:00
Zhong Jianxin
63c7cab6d3 less: Fix withSecure regression 2024-11-03 18:33:52 +08:00
Aleksana
f006e11a5d
less: adopt and rewrite (master) (#350981) 2024-10-28 11:24:51 +08:00
R. Ryantm
6727e92819 lefthook: 1.7.17 -> 1.8.1 2024-10-26 08:01:51 +00:00
Peder Bergebakken Sundt
5915003032
lenmus: fix build (#350490) 2024-10-26 00:56:46 +02:00
Anderson Torres
b03dc802e8 less: adopt and rewrite
- nixfmt-rfc-style
- a better comment about source provenance
- strictDeps
- marking dtzWill as not active
2024-10-24 14:34:47 -03:00
Tom Fitzhenry
9d27674a82 less: 661 -> 668 2024-10-24 23:26:03 +11:00
wxt
ef1b4c9636 lenmus: fix build 2024-10-22 21:51:20 +08:00
wxt
7c6d293f46 lenmus: nixfmt 2024-10-22 21:51:11 +08:00
wxt
0fca4ca081 lenmus: move to by-name 2024-10-22 21:41:36 +08:00
Winston R. Milling
6ade66eec3
legcord: add updateScript 2024-10-20 20:20:33 -05:00
Winston R. Milling
65d98a7319
legcord: 1.0.1 -> 1.0.2
https://github.com/Legcord/Legcord/releases/tag/v1.0.2
2024-10-20 20:19:48 -05:00
Gutyina Gergő
9744efc3b0
treewide: update pnpmDeps hashes 2024-10-19 23:50:41 +02:00
Winston R. Milling
17910cc615
legcord: 1.0.0 -> 1.0.1
https://github.com/Legcord/Legcord/releases/tag/v1.0.1
2024-10-12 14:00:31 -05:00
Winston R. Milling
b09274abf6
legcord: init at 1.0.0
https://github.com/Legcord/Legcord/releases/tag/v1.0.0
2024-10-11 16:59:38 -05:00
R. Ryantm
ec4f010c86 lefthook: 1.7.16 -> 1.7.17 2024-10-01 18:21:33 +00:00
Weijia Wang
6a478e6068
leiningen: moved to by-name and modernized derivation (#344459) 2024-09-27 02:46:35 +02:00
Mutsuha Asada
09eeb3f9b8
leiningen: moved to by-name 2024-09-26 00:15:45 +09:00
Artturin
e0464e4788 treewide: replace stdenv.is with stdenv.hostPlatform.is
In preparation for the deprecation of `stdenv.isX`.

These shorthands are not conducive to cross-compilation because they
hide the platforms.

Darwin might get cross-compilation for which the continued usage of `stdenv.isDarwin` will get in the way

One example of why this is bad and especially affects compiler packages
https://www.github.com/NixOS/nixpkgs/pull/343059

There are too many files to go through manually but a treewide should
get users thinking when they see a `hostPlatform.isX` in a place where it
doesn't make sense.

```
fd --type f "\.nix" | xargs sd --fixed-strings "stdenv.is" "stdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "stdenv'.is" "stdenv'.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "clangStdenv.is" "clangStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "gccStdenv.is" "gccStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "stdenvNoCC.is" "stdenvNoCC.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "inherit (stdenv) is" "inherit (stdenv.hostPlatform) is"
fd --type f "\.nix" | xargs sd --fixed-strings "buildStdenv.is" "buildStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "effectiveStdenv.is" "effectiveStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "originalStdenv.is" "originalStdenv.hostPlatform.is"
```
2024-09-25 00:04:37 +03:00
R. Ryantm
7a319ad43c lefthook: 1.7.15 -> 1.7.16 2024-09-23 14:26:29 +00:00
Peder Bergebakken Sundt
8c8c27bb19 treewide: remove unused inputs 2024-09-18 01:00:07 +02:00
R. Ryantm
713cbd6fa0 lefthook: 1.7.14 -> 1.7.15 2024-09-09 19:26:26 +00:00
Pol Dellaiera
fbb6124972
leftwm-theme: init at 0.1.2, leftwm-config: init at 0-unstable-2024-03-23 (#317805) 2024-09-09 09:57:41 +02:00
R. Ryantm
cb82c01eef leetgo: 1.4.8 -> 1.4.9 2024-09-05 18:20:41 +00:00
Sebastián Mancilla
6b6820c8e1
legba: fix darwin build (#336084) 2024-08-27 09:07:46 -04:00
Martin Weinelt
9c50de8b57
tree-wide: remove eelco as maintainer from things he no longer maintains (#336287) 2024-08-26 20:39:56 +02:00
Olivér Falvai
b6ee59f2a2
legba: fix darwin build 2024-08-26 08:12:40 +02:00
Emily
195f070953 ledger-autosync: 1.0.3 -> 1.2.0 2024-08-22 19:16:45 +01:00
Jade Lovelace
5dfdb09561 tree-wide: remove eelco as maintainer from things he no longer maintains
While preparing this change, I read the git blame on all of the files I
touched. I saw a working lifetime of building this system which we use
every day and love dearly and keep maintained ourselves. I saw commits
from a 14 year range between 2003 to 2017!! I could not be more thankful
for Eelco's work on building large parts of the foundation of nixpkgs
that all of us rely on now.

However, the end date of that range of the files I looked at the blame
on was 2017. I did not see surviving code from any newer date than that.
Looking at the Git logs, Eelco has been working on other things, and
that's totally fine.

However, it means that our maintenance metadata is out of date on a lot
of packages, and *that*'s the reason I am submitting this change. There
are a lot of packages that don't have anyone with their name on them to
be pinged if they need attention, even if they have had recent activity
(although it is never clear if recent activity was just someone fixing
it because ZHF or because the package actually matters to them).
There are a lot of packages with storied history that maybe don't need
to be in the set anymore at all since they have not been touched in
years; or maybe they are simply finished.

Empty maintainer lists should be a sign that we need to figure out who
maintains it or potentially remove it if it has rotted, and allowing the
maintainer list to be empty if it is already not maintained is part of a
healthy repository ecology.

Either way, I would like to have the maintenance metadata not mislead
anyone into sending Eelco emails about packages he doesn't, in practice,
work on anymore. I have not removed his name from everything; there are
some things that he is the upstream for or has worked on more recently,
for instance, like Nix, which I have left alone.
2024-08-21 01:17:45 -07:00
R. Ryantm
a6fc8b8bf5 lefthook: 1.7.12 -> 1.7.14 2024-08-18 21:37:57 +00:00
Gaetan Lepage
515b18c61e lexical: 0.7.0 -> 0.7.1
Diff: https://github.com/lexical-lsp/lexical/compare/refs/tags/v0.7.0...v0.7.1

Changelog: https://github.com/lexical-lsp/lexical/releases/tag/v0.7.1
2024-08-16 13:27:57 +02:00
Robert Schütz
9faf61f9fb ledger-autosync: move to pkgs/by-name 2024-08-12 12:11:32 -07:00
Pol Dellaiera
adac74c5c0
Merge pull request #333896 from r-ryantm/auto-update/lefthook
lefthook: 1.7.4 -> 1.7.12
2024-08-11 17:39:25 +02:00
R. Ryantm
938880ccbe leetgo: 1.4.7 -> 1.4.8 2024-08-11 13:43:05 +00:00
R. Ryantm
9894658c7d lefthook: 1.7.4 -> 1.7.12 2024-08-11 11:29:17 +00:00
Denperidge
8f8d42c893 leftwm-{config,theme}: update, migrate to by-name, refactor 2024-08-10 17:35:44 +02:00
Gaetan Lepage
17260b299f lexical: 0.6.1 -> 0.7.0
Diff:
https://github.com/lexical-lsp/lexical/compare/refs/tags/v0.6.1...v0.7.0

Changelog: https://github.com/lexical-lsp/lexical/releases/tag/v0.7.0
2024-07-28 22:53:40 +02:00
Weijia Wang
a7e62da52c
Merge pull request #329115 from SuperSandro2000/326566-followup
lemminx: use headless jdk for maven; java-language-server: use headless jdk for maven
2024-07-23 15:33:41 +02:00
Martin Weinelt
68ee996859
Merge pull request #328494 from mweinelt/less-661
less: 643 -> 661
2024-07-22 21:06:29 +02:00