Commit Graph

125 Commits

Author SHA1 Message Date
aucub
be9066a7f3 jprofiler: 13.0.6 -> 14.0.5 2024-11-30 15:18:26 +08:00
aucub
5b9283c4ef jprofiler: format 2024-11-30 15:17:53 +08:00
aucub
cdd6102925 jprofiler: remove catap as maintainer 2024-11-30 15:16:18 +08: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
h7x4
6e07a06d73 jprofiler: fix desktopItems 2024-10-01 23:08:27 +02:00
Weijia Wang
aaf00645f1 visualvm: 2.1.9 -> 2.1.10 (#342671) 2024-09-26 23:44:58 +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
R. Ryantm
a3bb1324ff visualvm: 2.1.9 -> 2.1.10 2024-09-17 22:43:16 +00:00
Anderson Torres
64dc362f82 fastjar: migrate to by-name 2024-08-14 22:51:16 -03:00
Sebastián Mancilla
edfe9ad10a Merge pull request #327699 from r-ryantm/auto-update/visualvm
visualvm: 2.1.8 -> 2.1.9
2024-08-13 23:14:21 -04:00
Sigmanificient
63d05d989e pkgs/development: remove unused arguments 2024-08-03 17:18:20 +02:00
Sandro Jäckel
5ca88a0439 java-language-server: use headless jdk for maven 2024-07-22 11:31:23 +02:00
R. Ryantm
821d27e0c9 visualvm: 2.1.8 -> 2.1.9 2024-07-16 16:59:22 +00:00
Sandro Jäckel
ca6f2a62ca java-language-server: use headless jdk to reduce dependencies 2024-06-29 20:04:21 +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
superherointj
2c5961d4b7 java-language-server: normalize doCheck 2024-06-02 21:35:13 -03:00
Jörg Thalheim
b9b7727514 Merge pull request #293628 from dotlambda/jprofiler-hash
jprofiler: update icon hash
2024-04-30 09:52:11 +02:00
Pol Dellaiera
52bff70174 Merge pull request #299001 from jlesquembre/jl/jextract
jextract: unstable-2023-11-27 -> unstable-2024-03-13
2024-03-26 21:01:42 +01:00
José Luis Lafuente
47fe73f5b6 jextract: unstable-2023-11-27 -> unstable-2024-03-13
Closes #293102
2024-03-26 15:08:30 +01:00
R. Ryantm
9a14ffe5ee visualvm: 2.1.7 -> 2.1.8 2024-03-20 07:16:12 +00:00
stuebinm
ff1a94e523 treewide: add meta.mainProgram to packages with a single binary
The nixpkgs-unstable channel's programs.sqlite was used to identify
packages producing exactly one binary, and these automatically added
to their package definitions wherever possible.
2024-03-19 03:14:51 +01:00
Robert Schütz
f79a81770f jprofiler: update icon hash 2024-03-05 18:15:17 -08:00
Sean Gilligan
224b3a5ad9 jextract: 2023-04-14 -> 2023-11-27 (JDK 21) (#271127)
This updates jextract to use JDK 21 and to be be
based on the commit described as 
"Update jextract 21 with latest fixes" and as of
2023-12-12 is the latest commit on `master`.

Co-authored-by: Sharzy <me@sharzy.in>
2023-12-13 17:03:13 +01:00
Nick Cao
cae847179c Merge pull request #262371 from makefu/pkgs/dex2jar/bump
dex2jar: 2.1 -> 2.4
2023-10-21 10:41:17 -04:00
makefu
e851b85178 dex2jar: 2.1 -> 2.4 2023-10-20 22:03:26 +02:00
R. Ryantm
01e84dcc5f visualvm: 2.1.6 -> 2.1.7 2023-10-04 10:44:58 +00:00
Philipp Mildenberger
2bb11b1c62 java-language-server: 0.2.38 -> 0.2.46 2023-09-07 02:37:37 +02:00
Jan Malakhovski
591ccfe5b9 treewide: noop: refer to src.name or similar where appropriate, part 3: more use cases
This continues where d8f7f6a5ce left off. Similarly
to that commit, this commit this also points `sourceRoot`s to `src.name` and similar
instead of keeping hardcoded names, and edits other derivation attrs do do the same,
where appropriate.

Also, similarly to d8f7f6a5ce some of expressions this
edits use `srcs` attribute with customly-named sources, so they have to be moved
into `let` blocks to keep evaluation efficient (the other, worse, way to do this
would to recurcively refer to `elemAt n finalAttrs.srcs` or, similarly, with `rec`).
2023-08-11 09:20:44 +00:00
Weijia Wang
d0742aa67b Merge pull request #244283 from emilytrau/dex2jar
dex2jar: 2.0 -> 2.1
2023-08-09 12:07:39 +02:00
Sprite
f484b49eeb jextract: install with bundle binaries 2023-08-07 11:33:40 +02:00
Nick Cao
7cc4180f87 Merge pull request #241099 from SharzyL/jextract-init
jextract: init at unstable-2023-04-14
2023-08-06 03:18:02 -06:00
Weijia Wang
30464bb5c5 treewide: fix mvnHash 2023-07-31 21:13:40 +02:00
Weijia Wang
e658ffa994 treewide: cleanup maven packages 2023-07-31 21:13:09 +02:00
Emily Trau
89ed113458 dex2jar: 2.0 -> 2.1 2023-07-19 16:28:49 +10:00
SharzyL
8a6a09f620 jextract: init at unstable-2023-04-14 2023-07-02 21:00:23 +08:00
Weijia Wang
dca415554f treewide: replace mavenfod with buildMavenPackage 2023-06-20 19:59:30 +03:00
Tillerino
13dd515a92 maven: adjust hashes of pull-maven-dependencies derivations
Since the newer Maven pulls different versions of its own dependencies,
the hashes of these derivations all changed.
2023-06-20 13:15:27 +02:00
Weijia Wang
c44a486d0a java-language-server: convert to mavenfod 2023-06-20 10:15:39 +03:00
Weijia Wang
e827e6e7b4 jprofiler: 13.0.2 -> 13.0.6 2023-04-28 22:36:33 +03:00
Weijia Wang
ab4d4f6fd5 jprofiler: darwin: 11.1.4 -> 13.0.2 2023-04-28 22:25:30 +03:00
R. Ryantm
be90a19796 visualvm: 2.1.5 -> 2.1.6 2023-04-21 23:37:13 +00:00
Ulrik Strid
376e9ceead treewide: add strictDeps = true to most packages depending on ocaml 2023-02-03 08:59:34 +01:00
R. Ryantm
1f165531bd visualvm: 2.1.4 -> 2.1.5 2022-10-22 11:23:49 +08:00
R. Ryantm
a98fc8a64c visualvm: 2.1.2 -> 2.1.4 2022-07-31 05:24:13 +00:00
Kirill A. Korinsky
84a29ac208 jprofiler: init at 13.0.2 2022-07-01 13:27:52 +02:00
Robert Scott
3b6bc4b69c treewide: set sourceProvenance for packages containing downloaded jars
these are the easily identifiable cases and will not be comprehensive
2022-06-04 19:47:57 +01:00
K900
cb2cfba6f7 treewide: switch all desktop file generators to new API
Notably:
- remove explicit arguments that match the defaults
- convert everything to the right Nix types
2022-02-25 13:40:38 -08:00
Jonathan Ringer
0bcbf67220 sawjap: make build src name independent
(cherry picked from commit a78ad036e2)
2022-02-01 17:13:29 +01:00
R. Ryantm
ea986d25f4 visualvm: 2.1.1 -> 2.1.2 2022-01-31 10:00:38 -08:00
R. RyanTM
80ad6649f8 visualvm: 2.1 -> 2.1.1
(#143299)
2022-01-02 00:21:49 +01:00