Commit Graph

65 Commits

Author SHA1 Message Date
Peder Bergebakken Sundt
6bf0840f11
databricks-cli: 0.229.0 -> 0.234.0 (#356926) 2024-11-24 04:43:28 +01:00
R. Ryantm
6b816b8d2f darcs-to-git: 0-unstable-2024-09-30 -> 0-unstable-2024-11-07 2024-11-22 11:32:39 +00:00
David McFarland
b0d941edb4
dotnet: november 2024 upgrades and infrastructure changes (#355753) 2024-11-18 20:20:45 -04:00
Sergei Volkov
1c8cc3b488 databricks-cli: 0.229.0 -> 0.234.0
upstream update https://github.com/databricks/cli/releases/tag/v0.234.0

Test `TestConsistentDatabricksSdkVersion` was added to ignored as it
relies on internal subpackage which building is also skipped
2024-11-18 11:27:38 +01:00
David McFarland
bfaca46529 dotnet-sdk/runtime/aspnetcore: 6.0 -> 8.0 2024-11-17 18:35:19 -04:00
Maximilian Bosch
0644d3be87
Merge branch 'master' into staging-next 2024-11-10 18:34:57 +01:00
Austin Horstman
f5f87e7240
dashy-ui: init at 3.1.1-unstable-2024-07-14 (#349149) 2024-11-10 09:35:31 -06:00
TheRealGramdalf
60bc80aa5c dashy-ui: 3.1.1-unstable-2024-07-14 2024-11-10 00:04:10 +00:00
Emily
ce788776a5 Merge master into staging-next 2024-11-09 12:51:01 +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
8fbf618bb4 dart-sass: 1.77.6 -> 1.80.5 2024-10-29 23:32:31 +00:00
Gutyina Gergő
1873bf4254
daed: fix pnpm.fetchDeps hash 2024-10-29 09:32:11 +01:00
Aleksana
d4f5c73399
daed: init at 0.8.0 (#322220) 2024-10-27 12:25:08 +08:00
Doron Behar
c70579b0a5 dataexplorer: make it launch by using swt built with jdk17
Co-Authored-By: Ben Wolsieffer <benwolsieffer@gmail.com>
2024-10-14 12:07:50 +03:00
oluceps
e054656aed
daed: init at 0.8.0 2024-10-11 21:34:19 +08:00
Nick Cao
d5482c5f8c
darcs-to-git: 0-unstable-2024-02-20 -> 0-unstable-2024-09-30 (#346980) 2024-10-10 19:17:50 -04:00
h7x4
8ab1d552b8
databricks-cli: 0.228.1 -> 0.229.0 (#346599) 2024-10-07 13:56:35 +02:00
R. Ryantm
232b5613c9 darcs-to-git: 0-unstable-2024-02-20 -> 0-unstable-2024-09-30 2024-10-07 01:21:03 +00:00
R. Ryantm
f97ef9ca4e databricks-cli: 0.228.1 -> 0.229.0 2024-10-05 05:04:07 +00:00
wxt
705db78039 darcs: 0-unstable-2015-06-04 -> 0-unstable-2024-02-20 2024-09-29 17:12:52 +08:00
wxt
1896f994ad darcs: add passthru.updateScript 2024-09-29 17:12:51 +08:00
wxt
fde40f4760 darcs-to-git: move to by-name; nixfmt 2024-09-29 17:12:51 +08:00
Markus Kowalewski
735a134c88
dablin: move to pkgs/by-name 2024-09-26 23:35:04 +02:00
Franz Pletz
5467da5aef
databricks-cli: 0.227.0 -> 0.228.1 (#341783) 2024-09-25 17:24:38 +02:00
Artturin
63fa53d97c treewide: reformat files which need reformatting after
`treewide: replace stdenv.is with stdenv.hostPlatform.is`
2024-09-25 00:04:39 +03: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
fe9ae2b7ee databricks-cli: 0.227.0 -> 0.228.1 2024-09-24 12:35:30 +00:00
Anderson Torres
f0e64ce16f treewide: migrate packages maintained by AndersonTorres to by-name
Manual migration for the sake of by-name migration is no longer discouraged
since #340235.
2024-09-16 14:26:47 -03: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
Mica
1e9fdfe2db
darktable: move to pkgs/by-name (#341144)
darktable: move to packages by-name

Co-authored-by: aleksana <me@aleksana.moe>
2024-09-12 10:24:07 +08:00
kfollesdal
c8e37dbf52 databricks-cli: init at 0.227.0 2024-08-26 11:24:34 +02:00
R. Ryantm
da9ce51068 dapr-cli: 1.14.0 -> 1.14.1 2024-08-21 17:59:31 +00:00
Peder Bergebakken Sundt
e471916645
treewide: passthru nixos test (#334491) 2024-08-18 00:29:43 +02:00
Fabian Affolter
64ab8b7753
Merge pull request #335338 from fabaff/das-fix
das: relax defusedxml
2024-08-17 15:31:23 +02:00
Fabian Affolter
08b5d739cd das: relax defusedxml
- fix build (https://hydra.nixos.org/build/269342119)
2024-08-17 12:26:44 +02:00
R. Ryantm
33251dcf5b dapr-cli: 1.13.0 -> 1.14.0 2024-08-14 03:40:45 +00:00
R. Ryantm
09203b8c0d davis: 4.4.3 -> 4.4.4 2024-08-05 19:20:55 +00:00
Nicolas Benes
e897f6b071 dataexplorer: 3.8.5 -> 3.9.0, move to by-name 2024-07-20 02:35:54 +02:00
Masum Reza
c796e4e5ac
Merge pull request #323877 from Luflosi/update/darling-dmg
darling-dmg: 1.0.4+git20200427 -> 1.0.4-unstable-2023-07-26
2024-07-15 22:40:06 +05:30
Luflosi
496099641c
darling-dmg: migrate to by-name 2024-07-01 21:50:54 +02:00
lelgenio
dc502210d6 dart-sass: reformat with nixfmt-rfc-style 2024-06-18 23:48:44 -03:00
lelgenio
f8f4c2f795 dart-sass: use conventional code structure 2024-06-18 23:48:44 -03:00
lelgenio
d88ee3f9c3 dart-sass: migrate to by-name 2024-06-18 23:48:44 -03:00
Sandro
1d472db6a3
Merge pull request #311867 from luftmensch-luftmensch/datatrove_0.2.0
datatrove: init at 0.2.0
2024-06-11 19:48:02 +02:00
Alexis Hildebrandt
f8c4a98e8e treewide: Remove the definite article from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"([Tt]he)? ' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Tt]he (.)/\1\U\2/'
2024-06-09 23:08:46 +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
luftmensch-luftmensch
cbf635795d
datatrove: init at 0.2.0 2024-06-02 20:49:41 +02:00
Casey Link
ac41bab16d
davis: 4.4.2 -> 4.4.3 (#313077)
Release notes: https://github.com/tchapi/davis/releases/tag/v4.4.3
2024-05-22 22:27:00 +00:00
R. Ryantm
dd37242d02 darklua: 0.13.0 -> 0.13.1 2024-05-19 00:47:37 +00:00
Aleksana
97ae4fc750
Merge pull request #308863 from lucperkins/move-into-by-name
treewide: move packages maintained by lucperkins to pkgs/by-name
2024-05-06 22:56:00 +08:00