Commit Graph

13143 Commits

Author SHA1 Message Date
Tomo
c3bcd14096 vscode-extensions.jackmacwindows.vscode-computercraft: init at 1.1.1 2024-05-08 16:19:58 -07:00
github-actions[bot]
05abe113a9
Merge master into staging-next 2024-05-08 12:01:20 +00:00
Yt
c1f1e517c0
Merge pull request #310030 from datafoo/vscode-extensions.elixir-lsp.vscode-elixir-ls
vscode-extensions.elixir-lsp.vscode-elixir-ls: 0.21.0 -> 0.21.1
2024-05-08 11:24:59 +00:00
datafoo
11172e8221 vscode-extensions.elixir-lsp.vscode-elixir-ls: 0.21.0 -> 0.21.1 2024-05-08 08:20:13 +02:00
github-actions[bot]
798dfbbedb
Merge master into staging-next 2024-05-08 00:02:03 +00:00
Ram Kromberg
23f2567441 textadept: 12.1 -> 12.4 2024-05-08 02:59:56 +03:00
superherointj
d6c530f0ca
Merge pull request #309758 from datafoo/vscode-extensions.elixir-lsp.vscode-elixir-ls
vscode-extensions.elixir-lsp.vscode-elixir-ls: 0.20.0 -> 0.21.0
2024-05-07 15:13:06 -03:00
superherointj
4000973e52
Merge pull request #309727 from r-ryantm/auto-update/vscode-extensions.reditorsupport.r
vscode-extensions.reditorsupport.r: 2.8.2 -> 2.8.3
2024-05-07 15:12:36 -03:00
superherointj
5869325941
Merge pull request #309714 from tomodachi94/update/vscode-extensions.jackmacwindows.craftos-pc/1.2.3
vscode-extensions.jackmacwindows.craftos-pc: 1.2.2 -> 1.2.3
2024-05-07 15:11:19 -03:00
github-actions[bot]
30144b9efd
Merge master into staging-next 2024-05-07 12:01:16 +00:00
datafoo
8f7a8ae150 vscode-extensions.elixir-lsp.vscode-elixir-ls: 0.20.0 -> 0.21.0 2024-05-07 08:53:06 +02:00
Pol Dellaiera
c8ca6d0423
Merge pull request #309732 from r-ryantm/auto-update/vscode-extensions.ms-python.vscode-pylance
vscode-extensions.ms-python.vscode-pylance: 2024.4.1 -> 2024.5.1
2024-05-07 08:05:19 +02:00
github-actions[bot]
58ecfa2997
Merge master into staging-next 2024-05-07 06:01:04 +00:00
R. Ryantm
4e175979e7 vscode-extensions.ms-python.vscode-pylance: 2024.4.1 -> 2024.5.1 2024-05-07 04:32:29 +00:00
R. Ryantm
cd958f5778 vscode-extensions.reditorsupport.r: 2.8.2 -> 2.8.3 2024-05-07 04:18:33 +00:00
Tomo
ba43570ede vscode-extensions.jackmacwindows.craftos-pc: 1.2.2 -> 1.2.3
Changelog: https://marketplace.visualstudio.com/items/jackmacwindows.craftos-pc/changelog
2024-05-06 19:32:18 -07:00
Aleksana
51a38149cf
Merge pull request #309031 from Aleksanaa/apostrophe
apostrophe: 2.6.3 -> 3.0
2024-05-07 10:10:40 +08:00
github-actions[bot]
b05583e319
Merge master into staging-next 2024-05-06 12:01:18 +00:00
Matthieu Coudron
08ee6ef3cd
Merge pull request #307546 from GaetanLepage/auto-save
vimPlugins.auto-save-nvim: switch to maintained fork, vimPlugins: update on 2024-04-28
2024-05-06 13:36:34 +02:00
R. Ryantm
bd860c27e2
vscode-extensions.myriad-dreamin.tinymist: 0.11.6 -> 0.11.7 2024-05-06 12:31:50 +02:00
Gaetan Lepage
e5a1863dcb vimPlugins.nvim-dbee: only supports linux 2024-05-06 12:28:58 +02:00
Lin Jian
812b487141
recipes-archive-melpa: fix incorrect source hashes
Here is how I produce this patch:
1. Cherry-pick the update[1] to my system's Nixpkgs commit to avoid
building many staging packages
2. Build sources for each elisp package set denoted as EPKGS.  EPKGS
can be elpaDevelPackages, elpaPackages, nongnuPackages,
melpaStablePackages and melpaPackages.
   nix build --include nixpkgs=$PWD --file source-hash.nix EPKGS --keep-going
3. Check log for hash mismatch:
   error: hash mismatch in fixed-output derivation '/nix/store/lg6jmfbqmkp261dwk25ji9n8sxd180rm-source-vhdl-tools-20200330.1819.drv':
         specified: sha256-QsEah0IR5qIEv4Wng9VAfyBB47UC9SwoVfsGjvcbUz0=
         got:    sha256-RMEah0IR5qIEv4Wng9VAfyBB47UC9SwoVfsGjvcbUz0=
4. Convert the correct hash if needed
   nix hash to-base32 sha256-RMEah0IR5qIEv4Wng9VAfyBB47UC9SwoVfsGjvcbUz0=

Here is the content of source-hash.nix:

```nix

let
  pkgs = import <nixpkgs> { };
  lib = pkgs.lib;
  mkSrcSet =
    epkgs:
    lib.mapAttrs (
      name: package: package.src.overrideAttrs { name = "source-" + name + "-" + package.version; }
    ) (lib.filterAttrs (_: package: lib.isDerivation package && (package ? src)) epkgs);
in
{
  elpaDevelPackages = mkSrcSet pkgs.emacsPackages.elpaDevelPackages;
  elpaPackages = mkSrcSet pkgs.emacsPackages.elpaPackages;
  nongnuPackages = mkSrcSet pkgs.emacsPackages.nongnuPackages;
  melpaStablePackages = mkSrcSet pkgs.emacsPackages.melpaStablePackages;
  melpaPackages = mkSrcSet pkgs.emacsPackages.melpaPackages;
}

```

[1]: https://github.com/NixOS/nixpkgs/pull/308258
2024-05-06 16:10:34 +08:00
"Gaetan Lepage"
48157ff02a vimPlugins.nvim-treesitter: update grammars 2024-05-06 08:52:37 +02:00
"Gaetan Lepage"
0d39087c7e vimPlugins: resolve github repository redirects 2024-05-06 08:52:37 +02:00
"Gaetan Lepage"
06d9c1c85f vimPlugins: update on 2024-05-06 2024-05-06 08:52:37 +02:00
Gaetan Lepage
c1ca85fb28 vimPlugins/triptych.nvim: fix typo in repo URL 2024-05-06 08:16:55 +02:00
Gaetan Lepage
f9adf47a5f vimPlugins.auto-save-nvim: switch to maintained fork 2024-05-06 08:16:55 +02:00
Ryan Lewis
ecf637d248
jetbrains.plugins: update 2024-05-06 15:40:38 +12:00
Ryan Lewis
10959baf1a
jetbrains: 2024.1 -> 2024.1.1
jetbrains.gateway: 2024.1.1 -> 2024.1.1
jetbrains.goland: 2024.1 -> 2024.1.1
jetbrains.idea-community: 2024.1 -> 2024.1.1
jetbrains.idea-ultimate: 2024.1 -> 2024.1.1
jetbrains.pycharm-community: 2024.1 -> 2024.1.1
jetbrains.pycharm-professional: 2024.1 -> 2024.1.1
2024-05-06 15:39:21 +12:00
github-actions[bot]
041bd1cdf7
Merge master into staging-next 2024-05-05 18:00:54 +00:00
Randy Eckenrode
8c429107e9
Merge pull request #309165 from reckenrode/lldb-fix 2024-05-05 10:59:14 -04:00
Jan Tojnar
100509c030 Merge branch 'staging-next' into staging
Conflicts in luaPackages.luarocks-nix:

- 8b563cd9f9 switched to the new version format (prefixed by 0 since there was no relevant last tag in the branch).
  bc4f6fa543 bumped version and switched to the new version format. But the tag used is not part of the branch the commit comes from (master).

  Used the new version but replaced the tag prefix with 0.

- b73ec84b9e removed meta (it is already set in the overridden luarocks). But that would cause the update script to try to update the overridden luarocks (as did the previously used old.meta).
  bf311d950e modified meta to fix the update script properly.

  Kept the meta from the latter since it allows update script to work.
2024-05-05 14:50:32 +02:00
R. Ryantm
38bb74acec vimPlugins.vim-clap: 0.52 -> 0.53 2024-05-04 22:46:17 +00:00
Randy Eckenrode
a14bae871a
vscode-extensions.vadimcn.vscode-lldb: use lib.getLib instead of lldb.lib 2024-05-04 18:25:51 -04:00
Pol Dellaiera
e94ecdea5a
vscode-extensions.tekumara.typos-vscode: init at 0.1.18 2024-05-04 23:00:26 +02:00
Gaetan Lepage
c026e55e0f vimPlugins.sniprun: 1.3.12 -> 1.3.13
Changelog:
https://github.com/michaelb/sniprun/blob/master/CHANGELOG.md#v1313
2024-05-04 21:59:46 +02:00
Matthieu C.
c2149a80d2 neovide: moved to pkgs/by-name 2024-05-04 15:25:23 +02:00
Matthieu C.
32d21ca630 neovim-unwrapped: move to pkgs/by name 2024-05-04 14:24:41 +02:00
aleksana
10988d8ade apostrophe: move to pkgs/by-name 2024-05-04 16:54:42 +08:00
Weijia Wang
b4617eb071 Merge branch 'staging-next' into staging 2024-05-03 19:03:51 +02:00
Bobby Rong
5fd8536a9a
Merge pull request #308821 from ninelore/update-vscode
vscode: 1.88.1 -> 1.89.0

Closes #308745
2024-05-03 23:42:32 +08:00
Vladimír Čunát
e96601ecf0
Merge #306080: staging-next 2024-04-22 2024-05-03 17:36:08 +02:00
ninelore
c320522f1d
vscode: 1.88.1 -> 1.89.0
Signed-off-by: ninelore <9l@9lo.re>
2024-05-03 16:25:06 +02:00
Kira Bruneau
6cb0413470
Merge pull request #308716 from r-ryantm/auto-update/emacsPackages.lsp-bridge
emacsPackages.lsp-bridge: 20240424.1125 -> 20240502.2306
2024-05-03 08:56:19 -04:00
github-actions[bot]
0b5a256e94
Merge staging-next into staging 2024-05-03 12:01:59 +00:00
github-actions[bot]
ae736c738d
Merge master into staging-next 2024-05-03 12:01:32 +00:00
superherointj
eba1ebd609
Merge pull request #307296 from benhiemer/bump-42crunch-vscode-openapi
vscode-extensions.42crunch.vscode-openapi: 4.25.1 -> 4.25.3
2024-05-03 08:56:41 -03:00
R. Ryantm
00a140fa00 emacsPackages.lsp-bridge: 20240424.1125 -> 20240502.2306 2024-05-03 05:13:13 +00:00
R. Ryantm
11c80ace56 focuswriter: 1.8.6 -> 1.8.7 2024-05-03 01:11:57 +00:00
github-actions[bot]
0471a8be05
Merge staging-next into staging 2024-05-03 00:03:09 +00:00
github-actions[bot]
3588aea450
Merge master into staging-next 2024-05-03 00:02:39 +00:00
Roman Zakirzyanov
bef52ce39a vimPlugins.llm-nvim: init at 2024-02-22 2024-05-02 21:31:55 +02:00
github-actions[bot]
df0375a9b2
Merge staging-next into staging 2024-05-02 18:01:39 +00:00
github-actions[bot]
31135daf48
Merge master into staging-next 2024-05-02 18:01:05 +00:00
superherointj
494e5dc391
vscode-extensions."42crunch".vscode-openapi: convert sha256 into hash 2024-05-02 11:47:05 -03:00
superherointj
7ce5259312
Merge pull request #308479 from BatteredBunny/continue-darwin
vscode-extensions.continue.continue: fix darwin build
2024-05-02 11:41:55 -03:00
github-actions[bot]
4e3bc63c95
Merge staging-next into staging 2024-05-02 12:02:05 +00:00
github-actions[bot]
c4dfa193ac
Merge master into staging-next 2024-05-02 12:01:36 +00:00
Nikolay Korotkiy
2715377a76
Merge pull request #308421 from r-ryantm/auto-update/vis
vis: 0.8 -> 0.9
2024-05-02 15:35:07 +04:00
Nikolay Korotkiy
e5de825be6
vis: migrate to by-name 2024-05-02 13:26:14 +04:00
BatteredBunny
2af9d2ef09 vscode-extensions.continue.continue: fix darwin build 2024-05-02 12:17:59 +03:00
Vladimír Čunát
725f48a252
Merge branch 'master' into staging-next 2024-05-02 09:05:49 +02:00
Lin Jian
3ceb8981a4
Merge pull request #308305 from afh/use-extensions-sharedLibrary
emacs.pkgs.tree-sitter-langs: use stdenv.hostPlatform for sharedLibrary suffix
2024-05-02 13:54:50 +08:00
Alexis Hildebrandt
a48ef69824 emacs.pkgs.tree-sitter-langs: use stdenv.hostPlatform for sharedLibrary suffix 2024-05-02 07:44:30 +02:00
R. Ryantm
c6861e8f0f vis: 0.8 -> 0.9 2024-05-02 02:55:32 +00:00
Lin Jian
d2f53dac88
Merge pull request #307372 from atorres1985-contrib/emacs
emacs: add mailutils support
2024-05-02 10:06:17 +08:00
Bobby Rong
13d91b7d04
Merge pull request #308277 from bobby285271/upd/homepage
treewide: Move away from wiki.gnome.org (part 2)
2024-05-02 07:47:16 +08:00
superherointj
14da3c97dd
Merge pull request #308313 from Pandapip1/init-vscode-extensions-vue-vscode-typescript-vue-plugin
vscode-extensions.vue.vscode-typescript-vue-plugin: init 1.8.27
2024-05-01 20:43:48 -03:00
superherointj
7f1a1f5735
Merge pull request #308312 from Pandapip1/init-vscode-extensions-vue-volar
vscode-extensions.vue.volar: init 2.0.16
2024-05-01 20:42:19 -03:00
Gavin John
b1c73868f1
vscode-extensions.vue.vscode-typescript-vue-plugin: init 1.8.27 2024-05-01 15:51:58 -05:00
Gavin John
b0b6fb6b7a
vscode-extensions.vue.volar: init 2.0.16 2024-05-01 15:50:45 -05:00
github-actions[bot]
dfdd2255bb
Merge staging-next into staging 2024-05-01 18:01:55 +00:00
github-actions[bot]
67f8ba4a30
Merge master into staging-next 2024-05-01 18:01:22 +00:00
Gavin John
b40da1f02a
vscode-extensions.reditorsupport.r: init 2.8.2 2024-05-01 12:40:56 -05:00
Anderson Torres
5be5d718c6 emacs: add mailutils support
Flagged via withMailutils (true by default).
2024-05-01 14:13:46 -03:00
Anderson Torres
a70cc6d866 emacs: use lib.* functions 2024-05-01 14:13:46 -03:00
superherointj
87584d0844
Merge pull request #308284 from Steinhagen/wikitext-update-3-8-1
vscode-extensions.RoweWilsonFrederiskHolme.wikitext 3.8.0 -> 3.8.1
2024-05-01 12:20:42 -03:00
Viorel-Cătălin Răpițeanu
fce6f0dc7e vscode-extensions.RoweWilsonFrederiskHolme.wikitext 3.8.0 -> 3.8.1
Updated to the latest version and replaced sha256 with hash for
checking.
2024-05-01 16:38:51 +03:00
PerchunPak
2b32fd65a3 neovimUtils.grammarToPlugin: remove vimplugin prefix
See https://github.com/NixOS/nixpkgs/pull/303200.
2024-05-01 14:35:38 +02:00
Anderson Torres
912560ea8c
nongnu-packages: updated 2024-04-28 (from overlay) 2024-05-01 20:04:19 +08:00
Anderson Torres
2e4df21e3d
melpa-packages: updated 2024-04-28 (from overlay) 2024-05-01 20:04:14 +08:00
Anderson Torres
60eebe0ec8
elpa-devel-packages: updated 2024-04-28 (from overlay) 2024-05-01 20:04:08 +08:00
Anderson Torres
f635f02328
elpa-packages: updated 2024-04-28 (from overlay) 2024-05-01 20:04:01 +08:00
éclairevoyant
7bf9febfa6
vscode-extensions.*: format with nixfmt (RFC 166) 2024-05-01 06:00:27 -04:00
Weijia Wang
e546978f14 Merge branch 'staging-next' into staging 2024-05-01 10:51:22 +02:00
K900
a9c7210d0b Merge branch 'master' into staging-next 2024-05-01 09:37:47 +03:00
Bobby Rong
cc01c004d3
pkgs/applications: Move away from wiki.gnome.org
The wiki.gnome.org site is planned for retirement.
2024-05-01 11:44:27 +08:00
Gaetan Lepage
29535b5bc9 vimPlugins.cmp-git: add plenary dependency 2024-04-30 23:35:03 +02:00
superherointj
d50a896ae5
Merge pull request #308074 from JohnRTitor/ms-vscode.cpptools
vscode-extensions.ms-vscode.cpptools: 1.17.3 -> 1.20.2
2024-04-30 16:57:09 -03:00
John Titor
6cf78283ae
vscode-extensions.ms-vscode.cpptools: 1.17.3 -> 1.20.2 2024-05-01 00:44:09 +05:30
github-actions[bot]
3b083efbf5
Merge staging-next into staging 2024-04-30 12:01:40 +00:00
github-actions[bot]
09b96cbb7a
Merge master into staging-next 2024-04-30 12:01:12 +00:00
Bobby Rong
705bad7ed6
Merge pull request #307483 from r-ryantm/auto-update/libgedit-gtksourceview
gedit 47.0, libgedit-gtksourceview 299.2.1, libgedit-tepl 6.10.0
2024-04-30 19:53:41 +08:00
Weijia Wang
499ddf9e45 Merge branch 'staging-next' into staging 2024-04-30 13:25:08 +02:00
Weijia Wang
23cbc3c2b3 Merge branch 'master' into staging-next 2024-04-30 13:24:52 +02:00
Jörg Thalheim
55d6983104
Merge pull request #304266 from hacker1024/fix/clion-nova
jetbrains.clion: Add .NET SDK for ReSharper engine
2024-04-30 09:56:09 +02:00
superherointj
de3d030b20
Merge pull request #307453 from carlthome/patch-4
vscode-extensions.ms-python.debugpy: init at 2023.3.13121011
2024-04-29 20:12:56 -03:00
Carl Thomé
d78c626d9b
vscode-extensions.ms-python.debugpy: init at 2023.3.13121011 2024-04-30 00:11:25 +02:00
superherointj
0fad51e49a vscode-extensions.github.copilot-chat: fix formatting 2024-04-29 18:17:48 -03:00
Pol Dellaiera
64a883feec
Merge pull request #306421 from mmarx/fix-vesktop
Patch RPATH for pre-built node modules in vesktop, terra-station, standardnotes, and logseq
2024-04-29 22:49:20 +02:00
Bjørn Forsman
c189f54eb5 quartus-prime-lite: add extraProfile parameter
For customizing /etc/profile in the FHS env.
2024-04-29 20:19:26 +02:00
Bobby Rong
d062f067d8
gnome-latex: adapt for libgedit-tepl rename 2024-04-29 22:08:12 +08:00
Bobby Rong
0948026166
gedit: 46.2 → 47.0
https://gitlab.gnome.org/GNOME/gedit/-/compare/46.2...47.0
2024-04-29 22:01:04 +08:00
Bobby Rong
80ead1c51d
libgedit-tepl: 6.8.0 → 6.10.0, renamed from tepl
https://github.com/gedit-technology/libgedit-tepl/compare/6.8.0...6.10.0
2024-04-29 22:01:04 +08:00
Aleksana
a211fabe77
Merge pull request #307373 from nebunebu/triptych-nvim
vimPlugins.triptych: init
2024-04-29 21:35:45 +08:00
github-actions[bot]
e41f310c75
Merge staging-next into staging 2024-04-29 12:01:43 +00:00
Vladimír Čunát
ad6f6ba399
Merge branch 'master' into staging-next 2024-04-29 08:22:30 +02:00
Lin Jian
d3a2cc97b3
Merge pull request #307370 from kotatsuyaki/xapian-lite-maintainer
emacsPackages.xapian-lite: add kotatsuyaki to maintainers
2024-04-29 12:45:31 +08:00
toonn
84df02abdb
Merge pull request #301354 from reckenrode/libiconv-switch-mk2
darwin.libiconv: 50 -> 99 and move to pkgs/by-name
2024-04-28 23:21:37 +02:00
github-actions[bot]
8e098acf1d
Merge staging-next into staging 2024-04-28 18:01:33 +00:00
Jan Tojnar
1b2ebb8fbb Merge branch 'master' into staging-next 2024-04-28 17:33:27 +02:00
Maximilian Bosch
3eebe15872
Merge pull request #307189 from Eliot00/vim-update
vim: 9.1.0200 -> 9.1.0377
2024-04-28 15:17:46 +00:00
Nick Cao
5d3fa40568
Merge pull request #307415 from kashw2/by-name-migration
{terraform-compliance, terragrunt, bilibili, xlights, karmor, codux, syft, grype}: migrate to `by-name`
2024-04-28 10:54:31 -04:00
Frederik Rietdijk
5772ac5a75 Removing FRidh as active maintainer of packages
In the past I was very active with Python packaging.
For several years now I was hardly around as maintainer,
so it does not make sense I am listed as a maintainer for
these makes. Looking back, I should have removed myself
as maintainer already much longer ago. Anyway, better late
than never.

It's been a fun ride, and  I do intend to occasionally contribute
to Nixpkgs, but not in the same way it once was.
2024-04-28 12:20:07 +02:00
Sergei Trofimovich
3ed44ea3a5 ed: 1.20.1 -> 1.20.2 2024-04-28 18:13:30 +10:00
kashw2
add9ba5e99 codux: migrate to by-name overlay 2024-04-28 16:29:19 +10:00
nebunebu
8626d6e461 vimPlugins.triptych: init 2024-04-27 23:50:51 -04:00
Weijia Wang
688ae00493 Merge branch 'staging-next' into staging 2024-04-28 05:11:56 +02:00
Weijia Wang
bab247f2bb Merge branch 'master' into staging-next 2024-04-28 05:11:43 +02:00
Weijia Wang
90e7fbe57f
Merge pull request #299344 from lukaslihotzki/kile
kile: 2.9.93 -> 2.9.94
2024-04-28 04:47:58 +02:00
kotatsuyaki
3c0122a42a
emacsPackages.xapian-lite: add kotatsuyaki to maintainers 2024-04-28 10:10:59 +08:00
Weijia Wang
1dd74334d0 Merge branch 'staging-next' into staging 2024-04-28 04:02:47 +02:00
Weijia Wang
7f45fee52a Merge branch 'master' into staging-next 2024-04-28 04:02:14 +02:00
Elliot
afb7fd40b7
vim: 9.1.0200 -> 9.1.0377 2024-04-28 09:50:17 +08:00
Randy Eckenrode
e7b5b44f9d
darwin.libiconv: remove and add to darwin-aliases 2024-04-27 18:09:53 -04:00
Sandro
33812a15b4
Merge pull request #307283 from msfjarvis/hs/remove-maintainer
maintainers: remove msfjarvis
2024-04-27 22:47:55 +02:00
Benedikt Hiemer
be54842dbb vscode-extensions.42crunch.vscode-openapi: 4.25.1 -> 4.25.3 2024-04-27 22:07:42 +02:00
Harsh Shandilya
804480fc08
maintainers: remove msfjarvis 2024-04-27 21:57:43 +02:00
Pol Dellaiera
32f0167ef1
Merge pull request #307240 from r-ryantm/auto-update/vscode-extensions.myriad-dreamin.tinymist
vscode-extensions.myriad-dreamin.tinymist: 0.11.5 -> 0.11.6
2024-04-27 18:36:02 +02:00
R. Ryantm
5cd3c899e3 vscode-extensions.myriad-dreamin.tinymist: 0.11.5 -> 0.11.6 2024-04-27 15:09:11 +00:00
Aleksana
7de07e1825
Merge pull request #305825 from COLAMAroro/fix/303142
pulsar: patch additionals git binary
2024-04-27 21:32:32 +08:00
COLAMAroro
eadd9c0a7f pulsar: patch additionals git binary
This is a direct fix for #303142.

Pulsar comes with a npm dependency called "dugite", which comes with it's own git binaries
The actual "git" binary itself was patched, but not other dependency binaries such as "git-fetch-http".
This commit just blanket fixes every other secondary binary.
Additionally, this patches are now also included on aarch64

Also, considering this package has now another maintainer, I wish to withdraw myself as a maintainer.
2024-04-27 15:02:28 +02:00
Pierre Bourdon
37889a30f9
maintainers: remove delroth 2024-04-27 11:54:22 +02:00
Weijia Wang
0ba27b59b0 Merge branch 'staging-next' into staging 2024-04-27 05:44:36 +02:00
Weijia Wang
37876dbdad Merge branch 'master' into staging-next 2024-04-27 05:44:19 +02:00
Jan Tojnar
eb04659fc2 treewide: wrapGAppsHook → wrapGAppsHook3
This was achieved using the following command:

    sd 'wrapGAppsHook\b' wrapGAppsHook3 (rg -l 'wrapGAppsHook\b')

And then manually reverted the following changes:

- alias in top-level.nix
- function name in wrap-gapps-hook.sh
- comment in postFixup of at-spi2-core
- comment in gtk4
- comment in preFixup of 1password-gui/linux.nix
- comment in postFixup of qgis/unwrapped-ltr.nix and qgis/unwrapped.nix
- comment in postFixup of telegram-desktop
- comment in postFixup of fwupd
- buildCommand of mongodb-compass
- postFixup of xflux-gui
- comment in a patch in kdePackages.kde-gtk-config and plasma5Packages.kde-gtk-config
- description of programs.sway.wrapperFeatures.gtk NixOS option (manual rebuild)
2024-04-27 02:23:22 +02:00
Rick van Schijndel
e8a4fd66a6
Merge pull request #306306 from philiptaron/add-to-vim-maintainers
vim: add @philiptaron to maintainers
2024-04-26 20:56:21 +02:00
Kira Bruneau
17295213af
Merge pull request #306970 from r-ryantm/auto-update/emacsPackages.lsp-bridge
emacsPackages.lsp-bridge: 20240423.38 -> 20240424.1125
2024-04-26 14:17:21 -04:00
github-actions[bot]
269cad6343
Merge staging-next into staging 2024-04-26 18:01:24 +00:00
github-actions[bot]
037c0663b9
Merge master into staging-next 2024-04-26 18:00:58 +00:00
superherointj
dfd38d2388
Merge pull request #306356 from zlepper/update-jetbrains-ides
jetbrains: 2024.1 -> 2024.1.2
2024-04-26 13:41:14 -03:00
Peder Bergebakken Sundt
637f958ce9
Merge pull request #306918 from GaetanLepage/lapce
lapce: 0.3.1 -> 0.4.0
2024-04-26 18:13:17 +02:00
zlepper
8328cdbf67 jetbrains.plugins: update 2024-04-26 17:30:19 +02:00
zlepper
d5d36af8b1 jetbrains: 2024.1 -> 2024.1.2
jetbrains.clion: 2024.1 -> 2024.1.1
jetbrains.datagrip: 2024.1.1 -> 2024.1.2
jetbrains.dataspell: 2024.1 -> 2024.1.1
jetbrains.gateway: 2024.1 -> 2024.1.1
jetbrains.phpstorm: 2024.1 -> 2024.1.1
jetbrains.rider: 2024.1 -> 2024.1.1
jetbrains.ruby-mine: 2024.1 -> 2024.1.1
jetbrains.rust-rover: 2023.3 EAP -> 2024.1 EAP
jetbrains.webstorm: 2024.1 -> 2024.1.2
jetbrains.writerside: 2023.3 EAP -> 2024.1 EAP
2024-04-26 17:30:08 +02:00
Matthieu Coudron
9bf92183f6
vimPlugins.nvim-dbee: init at 2024-01-13 (#286517)
* vimPlugins.nvim-dbee: init at 2024-01-13

nvim-dbee looks for the go binary in paths returned bu M.dir() and M.bin() defined in lua/dbee/install/init.lua
If we patch this path then it should be ok

* Update pkgs/applications/editors/vim/plugins/overrides.nix

Co-authored-by: Gaétan Lepage <33058747+GaetanLepage@users.noreply.github.com>

---------

Co-authored-by: Gaétan Lepage <33058747+GaetanLepage@users.noreply.github.com>
2024-04-26 14:54:30 +02:00
R. Ryantm
934c313074 emacsPackages.lsp-bridge: 20240423.38 -> 20240424.1125 2024-04-26 12:52:08 +00:00
Gaetan Lepage
a746d33489 lapce: 0.3.1 -> 0.4.0
Changelog: https://github.com/lapce/lapce/releases/tag/v0.4.0
2024-04-26 10:36:21 +02:00
Gaetan Lepage
f7c7f5d86c lapce: mark as broken on x86_64-darwin 2024-04-26 10:35:58 +02:00
github-actions[bot]
31627f4444
Merge staging-next into staging 2024-04-26 00:02:39 +00:00
Vladimír Čunát
d157c07324
Merge branch 'master' into staging-next 2024-04-25 20:43:34 +02:00