Commit Graph

95 Commits

Author SHA1 Message Date
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
Adam Stephens
171e7de37e
kanidm: 1.4.1 -> 1.4.2
https://github.com/kanidm/kanidm/releases/tag/v1.4.2
2024-11-08 20:55:51 -05:00
Weijia Wang
b2127e7614
treewide: cleanup own packages to utilize the new apple-sdk (#352699) 2024-11-07 02:22:10 +01:00
Weijia Wang
af0422bf3e
cargo-gra: init at 0.6.0; karlender: 0.9.2 -> 0.10.4, refactor (#353793) 2024-11-07 01:48:11 +01:00
Martin Weinelt
a7d71f1650
kanidm: 1.4.0 -> 1.4.1
https://github.com/kanidm/kanidm/releases/tag/v1.4.1
2024-11-06 17:01:59 +01:00
wxt
9a47d382c3
karlender: add bot-wxt1221 as maintainers 2024-11-06 21:03:52 +08:00
wxt
7e0fc29eca
karlender: 0.9.2 -> 0.10.4 2024-11-06 21:03:52 +08:00
wxt
4dccc2cc9a
karlender: add passthru.updateScript 2024-11-06 21:03:52 +08:00
wxt
dda8654cbd
karlender: nixfmt 2024-11-06 21:03:51 +08:00
wxt
161e7bff14
karlender: move to by-name 2024-11-06 21:03:51 +08:00
Weijia Wang
72ac7fea4a
kapacitor: 1.7.0 -> 1.7.5 (#344895) 2024-11-04 19:32:59 +01:00
Sandro
877c9acdb1
kazumi: init at 1.4.1 (#346472) 2024-11-04 17:59:28 +01:00
R. Ryantm
3f479febfe kamp: 0.2.1 -> 0.2.2 2024-11-03 15:14:09 +00:00
wxt
d1b841519c kapacitor: 1.7.0 -> 1.7.5 2024-11-03 19:38:26 +08:00
wxt
0adffe3ffd kapacitor: move to by-name; nixfmt 2024-11-03 19:38:26 +08:00
dr56ekgbb
f321425bf9 kazumi: init at 1.4.1 2024-11-03 02:42:16 +08:00
Adam Stephens
ccb0d0efa0
kanidm: remove trailing slash 2024-11-01 10:58:21 -04:00
oddlama
2e485aa812
kanidm: update provisioning patches to 1.4.0 2024-11-01 13:24:42 +01:00
Martin Weinelt
ff1111666f
kanidm: 1.3.3 -> 1.4.0
https://github.com/kanidm/kanidm/releases/tag/v1.4.0
2024-11-01 03:58:13 +01:00
TomaSajt
2296b47832
kando: use apple-sdk_11 2024-10-31 19:56:31 +01:00
Fabián Heredia Montiel
34b62f7c47 Merge remote-tracking branch 'origin/master' into staging-next 2024-10-27 16:10:56 -06:00
Gaétan Lepage
0b2e723efa
kando: init at 1.4.0 (#337555) 2024-10-27 18:02:30 +01:00
TomaSajt
369c239aff
kando: init at 1.4.0 2024-10-27 00:06:06 +02:00
K900
598ae1f7a4 kanidm: fix build with Rust 1.82 2024-10-24 14:43:16 +03:00
Philip Taron
2399b23c80
kakoune-lsp: 17.1.2 -> 18.0.2 (#349698) 2024-10-23 13:09:29 -07:00
Kerstin Humm
b12bcabd24
maintainers: remove erictapen from packages that I don't really maintain anymore 2024-10-22 12:32:29 +02:00
R. Ryantm
66463e2224 kara: 0.7.1 -> 0.7.3 2024-10-21 07:09:11 +00:00
R. Ryantm
67f3b2a27a kakoune-lsp: 17.1.2 -> 18.0.2 2024-10-19 05:51:19 +00:00
Erik Alonso
4fa2c2b5aa kamp: init at 0.2.1 2024-10-08 08:43:33 +01:00
KSJ2000
8a51b88d08
katawa-shoujo-re-engineered: 1.4.7 -> 1.4.8 2024-10-07 14:24:45 +03:00
Nick Cao
1977349696
kas: 4.4 -> 4.5 (#344282) 2024-09-25 08:22:49 -04: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
Pascal Bach
88036dd0c8 kas: 4.4 -> 4.5 2024-09-24 21:35:23 +02:00
Peder Bergebakken Sundt
3ab6abfec1
kara: init at 0.7.1 (#340630) 2024-09-19 23:13:45 +02:00
Peder Bergebakken Sundt
401a65280e
kak-tree-sitter: init at 1.1.2 (#333951) 2024-09-16 00:21:16 +02: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
Heitor Augusto
918e8d7bbb
kara: init at 0.7.1 2024-09-12 16:42:43 -03:00
Aleksana
1f70e0f549
kazv: init at 0.5.0 (#334844) 2024-09-06 16:05:45 +08:00
Pascal Bach
333855c2ae kas: 4.2 -> 4.4 2024-09-03 22:10:01 +02:00
Adam Stephens
b95b048fbe
kanidm: require big-parallel for building
Build has timed out and been killed multiple times on hydra builds. This forces users to attempt to build it themselves, which they cannot due without sufficient resources.
2024-08-28 17:55:32 -04:00
oddlama
a9d176d029
kanidm-provision: 1.1.1 -> 1.1.2 2024-08-23 20:46:03 +02:00
Martin Weinelt
d9cf6ea6f8
Merge pull request #336445 from adamcstephens/kanidm/1.3.3
kanidm: 1.3.2 -> 1.3.3
2024-08-22 18:41:30 +02:00
Francesco Gazzetta
cd79c54b93 kazv: init at 0.5.0 2024-08-22 15:29:43 +02:00
superherointj
23e365fc26
Merge pull request #334274 from codedownio/kata-runtime
kata-runtime: init at 3.7.0
2024-08-22 08:17:09 -03:00
lelgenio
e81bb18a0f kak-tree-sitter: init at 1.1.2 2024-08-22 00:34:41 -03:00
Adam Stephens
e78f80bc6b
kanidm: 1.3.2 -> 1.3.3 2024-08-21 22:42:53 -04:00
Adam Stephens
32679fbfed
kanidm: pin updatescript to version tags 2024-08-21 22:21:16 -04:00
Tom McLaughlin
4a8caa04a8 kata-runtime: init at 3.7.0
Release notes: https://github.com/kata-containers/kata-containers/releases/tag/3.7.0
2024-08-21 17:16:51 -07:00
Philip Taron
096157a01d
kakoune-lsp: 17.1.1 -> 17.1.2 2024-08-16 17:59:29 -07:00
Adam C. Stephens
c49d0387e0
Merge pull request #251598 from oddlama/feat-kanidm-provision
nixos/kanidm: add basic provisioning
2024-08-16 10:15:22 -04:00