Commit Graph

63 Commits

Author SHA1 Message Date
R. Ryantm
1d2941554a dbmate: 2.21.0 -> 2.22.0 2024-11-10 13:10:04 +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
Maciej Krüger
4904e3f5df dbeaver-bin: fix on case-sensitive fs 2024-11-08 14:50:19 +01:00
Maciej Krüger
bbf0e1231e dbeaver-bin: fix build on darwin, fixes #354475 2024-11-08 14:50:16 +01:00
Nick Cao
bfdd1148ed
dbip-{country,asn,city}-lite: 2024-10 -> 2024-11 (#352898) 2024-11-02 08:42:52 -04:00
Guillaume Desforges
100a0fa0af dbeaver: allow custom java -Xmx value
DBeaver has its Java heap size setting written in dbeaver.ini, which is
copied on install to $out/opt/dbeaver. This means that, to increase the
java heap size, it needs to happen in Nix build. This change proposes to
allow passing this setting to the function so that one can override it.
2024-11-01 17:56:06 +01:00
Nick Cao
c14c93f401
dbip-city-lite: 2024-10 -> 2024-11 2024-11-01 11:30:26 -04:00
Nick Cao
0c535f3b9e
dbip-asn-lite: 2024-10 -> 2024-11 2024-11-01 11:30:18 -04:00
Nick Cao
d1a233b214
dbip-country-lite: 2024-10 -> 2024-11 2024-11-01 11:30:12 -04:00
R. Ryantm
efb488de0c dbeaver-bin: 24.2.1 -> 24.2.3 2024-10-25 18:50:57 +00:00
Doron Behar
930dee9882
swt: 4.5 -> 4.33 & more (#347022) 2024-10-20 20:02:32 +03:00
Guanran Wang
91f8d1a84c
dbip-city-lite: init at 2024-10 2024-10-20 16:03:24 +08:00
Guanran Wang
6ed7376021
dbip-asn-lite: init at 2024-10 2024-10-20 16:03:24 +08:00
Guanran Wang
04a6c3b456
dbip-country-lite: move to by-name 2024-10-20 16:03:24 +08:00
Doron Behar
0f7e7b687e dbeaver-bin: don't depend on swt (not needed at all) 2024-10-13 21:35:37 +03:00
Fabián Heredia Montiel
ccec93c1c7 treewide: replace webkitgtk to webkitgtk_4_0
sed -i 's/ webkitgtk\b/ webkitgtk_4_0/g' pkgs/**.nix
sed -i 's/(webkitgtk\b/(webkitgtk_4_0/g' pkgs/**.nix
sed -i 's/\.webkitgtk\b/.webkitgtk_4_0/g' pkgs/**.nix

webkitgtk is currently pointing to that specific ABI version but the
alias is going to start warning
2024-10-11 17:23:43 -06: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
74104294d0 dbeaver-bin: 24.2.0 -> 24.2.1 2024-09-23 03:45:12 +00:00
nicoo
2641d97cbf pkgs/by-name: Convert hashes to SRI format
Reproduction script:
	# Bulk rewrite
	./maintainers/scripts/sha-to-sri.py pkgs/by-name
	# Revert some packages which will need manual intervention
	for n in amdvlk azure-cli cargo-profiler corefonts flatito fluxcd gist perf_data_converter protoc-gen-js solana-cli swt verible; do
		git checkout -- "pkgs/by-name/${n:0:2}/${n}"
	done
2024-09-15 11:24:31 +02:00
Maciej Krüger
4764ce9883
dbeaver-bin: add webkitgkt and glib-networking for webbrowser support (#336742) 2024-09-05 19:10:29 +02:00
R. Ryantm
a050855fb8 dbeaver-bin: 24.1.5 -> 24.2.0 2024-09-03 06:22:01 +00:00
Gutyina Gergő
9c9405d81a
dbeaver-bin: add webkitgkt and glib-networking for webbrowser support 2024-08-23 12:04:20 +02:00
Peder Bergebakken Sundt
fcdecc256a
treewide: change ${pname} to string literal (#336172)
* adwaita-icon-theme: change `${pname}` to string literal

* alp: change `${pname}` to string literal

* alsa-oss: change `${pname}` to string literal

* alsa-plugins: change `${pname}` to string literal

* alsa-ucm-conf: change `${pname}` to string literal

* alsa-utils: change `${pname}` to string literal

* anyrun: change `${pname}` to string literal

* assemblyscript: change `${pname}` to string literal

* audiobookshelf: change `${pname}` to string literal

* baobab: change `${pname}` to string literal

* braa: change `${pname}` to string literal

* brill: change `${pname}` to string literal

* centrifugo: change `${pname}` to string literal

* cheese: change `${pname}` to string literal

* cljfmt: change `${pname}` to string literal

* coppwr: change `${pname}` to string literal

* cosmic-edit: change `${pname}` to string literal

* cosmic-files: change `${pname}` to string literal

* cosmic-store: change `${pname}` to string literal

* cosmic-term: change `${pname}` to string literal

* crate2nix: change `${pname}` to string literal

* cups-kyocera-3500-4500: change `${pname}` to string literal

* dbqn: change `${pname}` to string literal

* dconf-editor: change `${pname}` to string literal

* devhelp: change `${pname}` to string literal

* dmarc-report-converter: change `${pname}` to string literal

* engage: change `${pname}` to string literal

* eog: change `${pname}` to string literal

* evolution-data-server-gtk4: change `${pname}` to string literal

* find-billy: change `${pname}` to string literal

* firefly-iii: change `${pname}` to string literal

* fuchsia-cursor: change `${pname}` to string literal

* geary: change `${pname}` to string literal

* ghex: change `${pname}` to string literal

* gitg: change `${pname}` to string literal

* glasskube: change `${pname}` to string literal

* gnome.gnome-autoar: change `${pname}` to string literal

* gnome.gnome-calculator: change `${pname}` to string literal

* gnome.gnome-calendar: change `${pname}` to string literal

* gnome.gnome-common: change `${pname}` to string literal

* gnome.gnome-dictionary: change `${pname}` to string literal

* gnome.gnome-disk-utility: change `${pname}` to string literal

* gnome.gnome-font-viewer: change `${pname}` to string literal

* gnome.gnome-keyring: change `${pname}` to string literal

* gnome.gnome-screenshot: change `${pname}` to string literal

* gnome.gnome-system-monitor: change `${pname}` to string literal

* gnome.seahorse: change `${pname}` to string literal

* gnome.simple-scan: change `${pname}` to string literal

* gnome.sushi: change `${pname}` to string literal

* gnome.totem: change `${pname}` to string literal

* gnome.yelp: change `${pname}` to string literal

* gnome.yelp-xsl: change `${pname}` to string literal

* gnucap-full: change `${pname}` to string literal

* goredo: change `${pname}` to string literal

* guile-semver: change `${pname}` to string literal

* halo: change `${pname}` to string literal

* intiface-central: change `${pname}` to string literal

* intune-portal: change `${pname}` to string literal

* iscc: change `${pname}` to string literal

* jetbrains-toolbox: change `${pname}` to string literal

* jnr-posix: change `${pname}` to string literal

* keymapp: change `${pname}` to string literal

* libation: change `${pname}` to string literal

* libeduvpn-common: change `${pname}` to string literal

* libmamba: change `${pname}` to string literal

* littlefs-fuse: change `${pname}` to string literal

* logseq: change `${pname}` to string literal

* lxgw-wenkai-tc: change `${pname}` to string literal

* microsoft-identity-broker: change `${pname}` to string literal

* minetest-mapserver: change `${pname}` to string literal

* msalsdk-dbusclient: change `${pname}` to string literal

* neverest: change `${pname}` to string literal

* nf-test: change `${pname}` to string literal

* numbat: change `${pname}` to string literal

* pdf2odt: change `${pname}` to string literal

* plemoljp: change `${pname}` to string literal

* plemoljp-hs: change `${pname}` to string literal

* plemoljp-nf: change `${pname}` to string literal

* pocket-updater-utility: change `${pname}` to string literal

* proto: change `${pname}` to string literal

* pw3270: change `${pname}` to string literal

* ratchet: change `${pname}` to string literal

* read-it-later: change `${pname}` to string literal

* redmine: change `${pname}` to string literal

* regina: change `${pname}` to string literal

* regripper: change `${pname}` to string literal

* revolt-desktop: change `${pname}` to string literal

* rs: change `${pname}` to string literal

* signaturepdf: change `${pname}` to string literal

* sonarlint-ls: change `${pname}` to string literal

* srgn: change `${pname}` to string literal

* stackit-cli: change `${pname}` to string literal

* substudy: change `${pname}` to string literal

* swayosd: change `${pname}` to string literal

* synthesia: change `${pname}` to string literal

* tarlz: change `${pname}` to string literal

* termcap: change `${pname}` to string literal

* tinycompress: change `${pname}` to string literal

* tracexec: change `${pname}` to string literal

* treefmt2: change `${pname}` to string literal

* udev-gothic: change `${pname}` to string literal

* udev-gothic-nf: change `${pname}` to string literal

* vvvvvv: change `${pname}` to string literal

* yggdrasil: change `${pname}` to string literal

* zsync: change `${pname}` to string literal
2024-08-20 15:56:55 -07:00
Maciej Krüger
83c6f0d2f1
dbeaver-bin: 24.1.4 -> 24.1.5 2024-08-19 17:18:52 +02:00
Mauricio Scheffer
da69826d74 dbeaver-bin: fix crash at startup
Fixes #330889
2024-08-18 16:59:11 +01:00
luftmensch-luftmensch
661e32b447
dbgate: 5.3.1 -> 5.3.4 2024-08-08 10:55:12 +02:00
R. Ryantm
cbe511af76 dbeaver-bin: 24.1.3 -> 24.1.4 2024-08-07 08:03:41 +00:00
Gutyina Gergő
662d615a81
dbeaver-bin: 24.1.2 -> 24.1.3 2024-07-22 11:14:12 +02:00
21CSM
8d7e6c6d0d
dbeaver-bin: 24.1.1 -> 24.1.2
dbeaver-bin: Update hashes
2024-07-09 01:40:36 -04:00
R. Ryantm
a20ba70b0b dbeaver-bin: 24.1.0 -> 24.1.1 2024-06-28 14:48:00 +00:00
luftmensch-luftmensch
e81e68c0aa
dbgate: 5.3.0 -> 5.3.1 2024-06-22 11:27:42 +02:00
Gutyina Gergő
41f0db20d9
dbeaver-bin: change order of attrs 2024-06-18 09:42:42 +02:00
Gutyina Gergő
cd0de861c5
dbeaver-bin: 24.0.5 -> 24.1.0 2024-06-18 09:27:46 +02:00
Gutyina Gergő
df044e4def
dbeaver: fix update script 2024-06-18 09:26:11 +02:00
Weijia Wang
33c992ca44
Merge pull request #320205 from yzx9/update-dbeaver-bin-darwin
dbeaver-bin: add darwin support
2024-06-16 20:26:25 +02:00
tomberek
13edc842ad
Merge pull request #318546 from luftmensch-luftmensch/dbgate_v5.3.0
dbgate: 5.2.8 -> 5.3.0
2024-06-16 10:27:27 -04:00
yzx9
224aa24a1c
dbeaver-bin: add darwin support 2024-06-16 21:34:46 +08:00
Jan Tojnar
7987842fec
Merge pull request #318589 from jtojnar/u-s-v-ignore-same
common-updater-scripts/u-s-v: support --ignore-same-version
2024-06-13 00:41:07 +02:00
R. Ryantm
d19cebf429 dbqn: 0.2.1 -> 0.2.2 2024-06-11 03:01:08 +00:00
luftmensch-luftmensch
f072f14c47
dbgate: 5.2.8 -> 5.3.0 2024-06-10 15:43:48 +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
Jan Tojnar
0421c816ba treewide: Simplify use of update-source-version
- `--ignore-same-version` allows us to not call it twice.
- with that, we can also omit version, to allow us updating e.g. `cargoDeps` hash
2024-06-09 20:33:23 +02:00
Sandro
8d49d4e4ab
Merge pull request #311405 from luftmensch-luftmensch/dbgate_5.2.7 2024-06-02 19:28:52 +02:00
luftmensch-luftmensch
481f0b1409
dbgate: init at 5.2.8 2024-06-02 16:53:24 +02:00
Anderson Torres
dcc123b733
dbqn: migrate to by-name (#314612)
Also, changed the default `buildNativeImage` to false, in order not to bring
graalvm-ce as a dependency by accident.
2024-05-29 06:55:01 +00:00
luoch
4082d7e115 dbeaver-bin: add wrapGAppsHook3 2024-05-27 16:35:09 +08:00
Maciej Krüger
7f8fba8e13
Merge pull request #314262 from gepbird/dbeaver-fix-aarch64-and-update-script
dbeaver-bin: fix aarch64 build, add update script
2024-05-24 16:20:44 +02:00
Gutyina Gergő
237485a9db
dbeaver-bin: fix aarch64 hash mismatch 2024-05-24 13:09:43 +02:00
Gutyina Gergő
07fd54a4a2
dbeaver-bin: add update script 2024-05-24 13:09:38 +02:00