Commit Graph

17 Commits

Author SHA1 Message Date
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
R. Ryantm
40f32aaf16 vscode-js-debug: 1.94.0 -> 1.95.3 2024-11-25 11:15:10 +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
R. Ryantm
55a058b26d vscode-js-debug: 1.93.0 -> 1.94.0 2024-09-30 01:41:14 +00: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
Weijia Wang
edc1de5aa6
vscode-js-debug: 1.91.0 -> 1.93.0 (#332398) 2024-09-09 23:49:58 +02:00
R. Ryantm
5b09fecd00 vsce: 3.0.0 -> 3.1.0 2024-09-05 18:40:32 +00:00
R. Ryantm
9cfe67a6cf vscode-js-debug: 1.91.0 -> 1.93.0 2024-09-01 07:10:09 +00:00
Doron Behar
24a76db073
Merge pull request #334377 from dotlambda/node-gyp
node-gyp: init at 10.2.0
2024-08-16 15:34:47 +00:00
Aaron Jheng
4de236c910
vsce: 2.31.1 -> 3.0.0 2024-08-16 08:11:00 +00:00
Aaron Jheng
02470a2f88
vsce: move to by-name 2024-08-16 08:03:58 +00:00
Robert Schütz
000f83e17c nodePackages.node-gyp: drop 2024-08-13 05:54:31 -07:00
pinage404
cb36a91818
vscode-runner: init at 1.6.1 (#330659) 2024-08-06 11:21:56 +02:00
R. Ryantm
6a4ae9f9d5 vscode-js-debug: 1.90.0 -> 1.91.0 2024-07-06 02:26:27 +02:00
Xandor Schiefer
92d4b33203
vscode-js-debug: darwin support 2024-06-28 00:08:53 +02:00
Xandor Schiefer
f4423979de
vscode-js-debug: fix missing jq in postPatch
Fixes #320507.

The `npmConfigHook` used by `buildNpmPackage` does not correctly
propagate the `nativeBuildInputs` into its `PATH`, which is why `jq` was
not available during the patch phase.

Since this `npmConfigHook` is run as part of a fixed-output
derivation (`fetchNpmDeps`), if it had already been realised, unless its
hash had changed, a missing `jq` would not be noticed, on a rebuild of
`vscode-js-debug`.

The `postPatch` hook is *also* run during `buildNpmPackage`, but there
the `nativeBuildInputs` were correctly added to the `PATH`, which is why
a rebuild of `vscode-js-debug` with the previous `postPatch` would
succeed (if its `npmDeps`'s hash hadn't changed).
2024-06-18 22:24:01 +02:00
Xandor Schiefer
2bd7c27874
vscode-js-debug: init at 1.90.0
Closes https://github.com/NixOS/nixpkgs/issues/281031.
2024-06-12 11:56:58 +02:00