Commit Graph

68 Commits

Author SHA1 Message Date
Reno Dakota
52bf1163fa
treewide: use getLib when accessing clang / libclang / stdenv.cc.cc
In preparation to eliminate the lib output for the unwrapped clang, use
`lib.getLib` to access the `lib` output.
2024-11-07 10:27:41 +00:00
Fabian Ponce
9e6b7f92be jetbrains: fix plugin support for darwin 2024-10-31 12:26:32 +01:00
Uzair Mohammed
8962c791f0 jetbrains.plugins: update 2024-10-24 13:40:01 -07:00
ners
10102b5c05
jetbrains.plugins: update 2024-09-27 09:44:57 +02: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
James Ward
f1ff851a7d
jetbrains.plugins: update 2024-09-20 06:47:05 -06:00
John Titor
567467efa7
jetbrains.plugins: update 2024-09-12 10:15:39 +05:30
James Ward
149b6408e8
jetbrains.plugins: update 2024-08-29 14:28:48 -06:00
James Ward
1e94c13607
jetbrains.plugins: update 2024-08-23 08:36:07 -06:00
James Ward
ddd8d7b3e0
jetbrains.plugins: update 2024-08-23 08:36:07 -06:00
hacker1024
d4f311a338
jetbrains.plugins: github-copilot: Use correct agent path 2024-08-23 08:36:06 -06:00
James Ward
b66e43f26c
jetbrains.plugins: update 2024-08-23 08:36:06 -06:00
James Ward
efde353175
jetbrains.plugins: update 2024-08-23 08:36:05 -06:00
nonchris
5691956c19 jetbrains.plugins: update 2024-07-31 15:50:25 +02:00
Masum Reza
3dc704ed6e
Merge pull request #323553 from liff/jb+scala-plugin
jetbrains.plugins: add scala
2024-07-25 20:24:23 +05:30
Benedikt Ritter
dc98abc547
jetbrains.plugins: add protocol-buffers plugin 2024-07-07 12:13:11 +02:00
Olli Helenius
3a9d1c727d
jetbrains.plugins: add scala 2024-06-30 13:02:12 +03:00
夜坂雅
1846350fff
jetbrains.plugins: update 2024-06-25 13:51:39 +08:00
Olli Helenius
92f2ec7ec8
jetbrains.plugins: add aws-toolkit 2024-06-22 17:40:19 +03:00
Olli Helenius
60168fcfd6
jetbrains.plugins: add mermaid 2024-06-22 17:40:18 +03:00
Olli Helenius
4e01e03387
jetbrains.plugins: add acejump 2024-06-22 17:40:18 +03:00
Olli Helenius
beb118d588
jetbrains.plugins: add string-manipulation 2024-06-22 17:40:18 +03:00
Olli Helenius
8a9fe0aa41
jetbrains.plugins: add asciidoc 2024-06-22 17:40:17 +03:00
kashw2
975d9f0a63 jetbrains.plugins: update 2024-06-13 05:30:19 +10:00
Weijia Wang
a096ced71d
Merge pull request #313940 from zlepper/update-jetbrains-ides
jetbrains: 2024.1 EAP -> 2024.1.3
2024-06-07 16:39:46 +02:00
zlepper
bf63693f1f jetbrains.plugins: update 2024-06-06 19:59:14 +02:00
Sandro
3aa3d627a1
Merge pull request #309011 from liff/jetbrains/fix-plugin-discovery 2024-06-02 16:40:29 +02:00
Ryan Lewis
ecf637d248
jetbrains.plugins: update 2024-05-06 15:40:38 +12:00
Olli Helenius
c2fbe8c06e
jetbrains.plugins: remove unused constructs 2024-05-04 12:41:21 +03:00
Olli Helenius
3043c09398
jetbrains.plugins: allow non-bundled plugins to be discovered
In recent JetBrains releases, a `plugin-classpath.txt` made its
appearance. That file seems to be a cache of some kind that the IDEs
use to discover which plugins are bundled with an IDE release.

If that file is removed, there seems to be a fallback mechanism that
instead goes through the list of subdirectories in `plugins`. That
works rather better for us, as we don’t know how to generate a
`plugin-classpath.txt`.
2024-05-04 12:31:46 +03:00
zlepper
8328cdbf67 jetbrains.plugins: update 2024-04-26 17:30:19 +02:00
ners
f3410e6f4e jetbrains.plugins: update 2024-04-11 10:05:13 +02:00
Jan Riedel
41e0d7f95f
jetbrains.plugins: update 2024-04-04 23:51:29 +02:00
DaRacci
ac9dac7cce
jetbrains.plugins: update 2024-03-29 08:32:16 +00:00
Siddhartha
beafeebad6 jetbrains.plugins: update 2024-03-13 12:06:53 -04:00
Jeff Zellner
fce4654307 jetbrains.plugins: update 2024-02-04 10:04:23 -07:00
Linus Vettiger
7ce4c855bb jetbrains.plugins: update 2023-12-29 17:45:57 +01:00
Dominik Ritter
2768c70084 jetbrains.plugins: update 2023-12-13 08:04:06 +01:00
Daniel S. Lee
571066d3f7 jetbrains.plugins: update 2023-12-09 22:53:15 +09:00
Daniel S. Lee
8dfa8a9147 jetbrains.plugins: update 2023-12-09 22:53:15 +09:00
Daniel S. Lee
73dbdc2707 jetbrains.plugins: update 2023-12-09 22:53:14 +09:00
GenericNerdyUsername
3b53d2b137
jetbrains.*: overhaul, add source builds for pycharm and idea 2023-12-03 19:32:27 +00:00
Mikael Fangel
9b4751604b
jetbrains.plugins: update 2023-10-21 02:08:48 +02:00
Dominik Ritter
81b4180939 jetbrains.plugins: update 2023-10-14 01:25:03 +02:00
nixdrin
b634ba84f0 jetbrains.plugins: add new Rust plugin
Add the new Rust plugin (https://plugins.jetbrains.com/plugin/22407-rust)
that replaces the old open-source one for clion, idea-ultimate and rust-rover.
2023-09-28 15:59:56 +02:00
Dominik Ritter
854e192b34 jetbrains.plugins: update 2023-09-23 13:00:25 +02:00
followin
99f7748964 jetbrains.plugins: update 2023-09-15 21:43:47 +03:00
followin
929c3effe7 jetbrains-rust-rover: add to plugins/tests and to friendly_to_plugin list 2023-09-15 21:30:16 +03:00
Dominik Ritter
72672b9c86 jetbrains.plugins: update 2023-09-13 21:09:35 +02:00
Dominik Ritter
c269ed0cae jetbrains.plugins: update 2023-08-28 20:46:44 +02:00