1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-18 11:40:45 +00:00
Commit graph

912 commits

Author SHA1 Message Date
Jörg Thalheim 5356420466 treewide: remove unused with statements from maintainer lists
$ find -type f -name '*.nix' -print0 | xargs -P "$(nproc)" -0 sed -i \
  -e 's!with lib.maintainers; \[ *\];![ ];!' \
  -e 's!with maintainers; \[ *\];![ ];!'
2024-07-29 10:06:20 +08:00
Martin Weinelt 93f4195fe0
Merge remote-tracking branch 'origin/master' into staging-next
Conflicts:
- pkgs/applications/graphics/seamly2d/default.nix
2024-07-26 18:05:04 +02:00
Sigmanificient 543cd40ecc treewide: remove trailing space in description
Done using `grep -rP 'description\s+=\s+"[^"]+[ ]";' | cut -d ':' -f 1 |
xargs -i nvim {}` and sorting the opened files by hand, avoiding
generated packages list
2024-07-26 03:38:50 +02:00
github-actions[bot] 31817540ee
Merge staging-next into staging 2024-07-14 18:01:37 +00:00
aleksana 592e3845c4 treewide: sha256 -> hash attribute for fetchgit 2024-07-14 19:10:08 +08:00
7c6f434c 017a63ea4d
Merge pull request #324900 from reckenrode/zsh-texinfo-fix
zsh: fix compatibility with texinfo 7.1
2024-07-06 08:40:25 +00:00
Randy Eckenrode d976a67189
zsh: fix compatibility with texinfo 7.1
https://www.zsh.org/mla/workers/2023/msg00591.html
2024-07-05 16:52:59 -04:00
R. Ryantm 31c74ace74 oh-my-zsh: 2024-06-28 -> 2024-07-03 2024-07-05 17:49:33 +00:00
Janik H. 76cd1d2211 maintainers: drop janik
I guess my time has come as well...

With this commit, I'm not just dropping my maintainer entry, but I'm also
resigning from my duties as a board observer and NixCon project lead.
I also terminated my Summer of Nix contract today.
I'll also stop hosting the local NixOS meetup.

The only "project" I'll finish under the NixOS Foundation umbrella is
Google Summer of Code because the mentees aren't even remotely
responsible for why I'm leaving, and it would be unfair to leave them
hanging.

I'm grateful for all the things I was able to learn, for all the experiences
I could gather, and for all the friends I made along the way.
NixOS is what makes computers bearable for me, so I'll go and work on
some fork (*something something* you always meet twice in life).
2024-07-02 02:36:42 +02:00
Matthias Beyer 689cf569a2
Merge pull request #322560 from r-ryantm/auto-update/zimfw
zimfw: 1.13.1 -> 1.14.0
2024-06-30 17:28:00 +02:00
R. Ryantm 57a286ccba oh-my-zsh: 2024-06-20 -> 2024-06-28 2024-06-28 15:56:23 +00:00
R. Ryantm 94e90e895a zimfw: 1.13.1 -> 1.14.0 2024-06-26 03:06:38 +00:00
Weijia Wang b776e4b80c
Merge pull request #321060 from r-ryantm/auto-update/spaceship-prompt
spaceship-prompt: 4.15.3 -> 4.16.0
2024-06-26 00:06:38 +02:00
R. Ryantm 1235f68d07 oh-my-zsh: 2024-06-13 -> 2024-06-20 2024-06-22 20:34:39 +00:00
Masum Reza 1bb6b44718
Merge pull request #313769 from yVieta/zsh-completion
zsh-completions: add licenses
2024-06-20 23:21:56 +05:30
R. Ryantm 434da283a5 spaceship-prompt: 4.15.3 -> 4.16.0 2024-06-19 15:53:58 +00:00
R. Ryantm f16c1b17ee oh-my-zsh: 2024-06-04 -> 2024-06-13 2024-06-15 13:55:08 +00:00
Nick Cao 838cafb59b
Merge pull request #319478 from r-ryantm/auto-update/zsh-you-should-use
zsh-you-should-use: 1.7.4 -> 1.8.0
2024-06-13 13:52:29 -04:00
R. Ryantm 55023c9bdf zsh-you-should-use: 1.7.4 -> 1.8.0 2024-06-13 04:35:03 +00:00
Silvan Mosberger cce99f56aa zsh-abbr: install man page 2024-06-12 23:40:02 +02:00
Weijia Wang c102899c0e
Merge pull request #317533 from r-ryantm/auto-update/zsh-prezto
zsh-prezto: 0-unstable-2024-04-15 -> 0-unstable-2024-06-03
2024-06-12 00:43:09 +02:00
R. RyanTM 3288f1bf5c
oh-my-zsh: 2024-05-31 -> 2024-06-04 (#318134) 2024-06-10 19:41:25 -04:00
Alexis Hildebrandt f8c4a98e8e treewide: Remove the definite article from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"([Tt]he)? ' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Tt]he (.)/\1\U\2/'
2024-06-09 23:08:46 +02: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
Alexis Hildebrandt bf995e3641 treewide: Remove ending period from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*".*\.";' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*)\.";/\1";/'
2024-06-09 23:04:51 +02:00
Minijackson 17d990d9f7
zsh: disable function subdirs
partial revert of #242678,
since it can make Zsh very slow to start
2024-06-07 16:58:34 +02:00
R. Ryantm 338bbf8fdb zsh-prezto: 0-unstable-2024-04-15 -> 0-unstable-2024-06-03 2024-06-05 19:09:36 +00:00
R. Ryantm dc96571a57 oh-my-zsh: 2024-05-03 -> 2024-05-31 2024-05-31 16:33:59 +00:00
R. Ryantm 66b6e84e28 spaceship-prompt: 4.15.2 -> 4.15.3 2024-05-29 15:14:31 +00:00
R. Ryantm e5135b2585 zsh-abbr: 5.7.1 -> 5.8.0 2024-05-28 09:39:12 +00:00
vieta 4e8412889f zsh-completions: add licenses 2024-05-24 18:41:15 +02:00
Weijia Wang 0e48629e39
Merge pull request #313924 from Lurkki14/gpl2-pkgs-shells
pkgs/shells: remove licenses.gpl2
2024-05-24 10:17:05 +02:00
Jussi Kuokkanen f57d955412 pkgs/shells: remove licenses.gpl2 2024-05-23 18:28:43 +03:00
R. Ryantm 864a40a21d zsh-abbr: 5.6.0 -> 5.7.1 2024-05-21 20:37:00 +00:00
Franz Pletz 88523fa0e7
Merge pull request #312326 from r-ryantm/auto-update/zsh-you-should-use
zsh-you-should-use: 1.7.3 -> 1.7.4
2024-05-17 13:10:14 +02:00
R. Ryantm 3426ed3cc9 zsh-abbr: 5.4.1 -> 5.6.0 2024-05-17 03:28:14 +00:00
R. Ryantm 01d7cc7c3c zsh-you-should-use: 1.7.3 -> 1.7.4 2024-05-17 00:47:26 +00:00
Weijia Wang df66529b1e
Merge pull request #309744 from r-ryantm/auto-update/oh-my-zsh
oh-my-zsh: 2024-04-25 -> 2024-05-03
2024-05-13 23:27:30 +02:00
Pyrox 3a86eb9e05
zsh-fzf-tab: 1.1.1 -> 1.1.2 2024-05-12 22:37:09 -04:00
R. Ryantm 7f9e729fe2 oh-my-zsh: 2024-04-25 -> 2024-05-03 2024-05-07 05:31:42 +00:00
OPNA2608 693b337466 zsh-prezto: unstable-2024-04-15 -> 0-unstable-2024-04-15 2024-05-05 22:45:23 +02:00
R. Ryantm 0ec04f5d0e spaceship-prompt: 4.15.1 -> 4.15.2 2024-05-01 17:57:07 +00:00
Nick Cao da1044c076
Merge pull request #307911 from r-ryantm/auto-update/oh-my-zsh
oh-my-zsh: 2024-04-23 -> 2024-04-25
2024-04-30 08:58:06 -04:00
R. Ryantm 61fb3e4139 oh-my-zsh: 2024-04-23 -> 2024-04-25 2024-04-30 05:36:26 +00:00
R. Ryantm 8fd0d958ee zimfw: 1.13.0 -> 1.13.1 2024-04-29 15:16:04 +00:00
Weijia Wang 4d52d3e0d0
Merge pull request #302022 from r-ryantm/auto-update/zsh-prezto
zsh-prezto: unstable-2024-03-17 -> unstable-2024-04-15
2024-04-27 02:56:57 +02:00
R. RyanTM 4c51051b98
oh-my-zsh: 2024-04-12 -> 2024-04-23 (#305062) 2024-04-25 08:58:18 -04:00
R. RyanTM 3ad65e9f48
oh-my-zsh: 2023-11-29 -> 2024-04-12 (#303737) 2024-04-16 11:27:15 -04:00
R. Ryantm 0b6a38c517 zsh-prezto: unstable-2024-03-17 -> unstable-2024-04-15 2024-04-16 12:40:17 +00:00
Adam C. Stephens 877d8a1383
Merge pull request #250009 from gepbird/update-zsh-syntax-highlighting
zsh-syntax-highlighting: 0.7.1 -> 0.8.0
2024-04-10 13:41:50 -04:00