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
seth
012055eb87
systemd-netlogd: init at 1.4.2
2024-11-05 14:34:33 -05:00
Sandro
3a0187e085
syncstorage-rs: 0.17.9 -> 0.17.12 ( #350176 )
2024-10-31 01:12:05 +01:00
aktaboot
d2c9de5e7c
syncstorage-rs: add passthru.updateScript
2024-10-30 16:26:38 +01:00
aktaboot
ece1914240
syncstorage-rs: 0.17.9 -> 0.17.12
...
https://github.com/mozilla-services/syncstorage-rs/releases
2024-10-30 16:26:31 +01:00
Pol Dellaiera
dc2709d011
symfony-cli: 5.10.2 -> 5.10.4 ( #351317 )
2024-10-26 05:21:49 +02:00
R. Ryantm
528c37729a
symfony-cli: 5.10.2 -> 5.10.4
2024-10-26 00:31:38 +00:00
Aaron Honeycutt
e9eca9b6e9
system76-power: 1.2.1 -> 1.2.2
2024-10-25 08:54:40 +02:00
R. Ryantm
77f5f203cf
syncyomi: 1.1.1 -> 1.1.2
2024-10-24 15:53:30 +00:00
Sefa Eyeoglu
feb995ade0
pnpm: 9.12.1 -> 9.12.2 ( #349093 )
2024-10-20 20:27:37 +02:00
Artturin
1e922a0216
system76-power: 1.1.23 -> 1.2.1 ( #349351 )
2024-10-20 06:10:36 +03:00
Gutyina Gergő
9744efc3b0
treewide: update pnpmDeps hashes
2024-10-19 23:50:41 +02:00
Nick Cao
e5939be050
syncstorage-rs: 0.17.0 -> 0.17.9 ( #349507 )
2024-10-18 16:05:49 -04:00
aktaboot
5c92fbcc38
syncstorage-rs: 0.17.0 -> 0.17.9
...
Changes: https://github.com/mozilla-services/syncstorage-rs/compare/0.17.0...0.17.9
2024-10-18 12:36:08 +02:00
R. Ryantm
3b7432ff22
system76-scheduler: 2.0.1 -> 2.0.2
2024-10-18 05:20:04 +00:00
scrufulufugus
6652ec3ddb
system76-power: 1.1.23 -> 1.2.1
2024-10-17 15:26:19 -04:00
scrufulufugus
76e0284e88
system76-power: migrate to pkgs/by-name format
2024-10-17 18:22:34 +02:00
scrufulufugus
969102bd11
system76-scheduler: migrate to pkgs/by-name format
2024-10-17 18:22:34 +02:00
R. Ryantm
3b235d21be
syft: 1.13.0 -> 1.14.0
2024-10-09 05:51:50 +00:00
Emery Hemingway
51aea27321
syndicate-server: 0.46.0 -> 0.48.0
2024-10-08 20:34:19 +00:00
R. Ryantm
da1d684c15
syslogng: 4.8.0 -> 4.8.1
2024-10-04 01:38:50 +00:00
Colin
2a5132e992
syshud: 0-unstable-2024-08-27 -> 0-unstable-2024-09-26
2024-09-29 15:04:09 +00:00
R. Ryantm
5269faa76c
sysdig-cli-scanner: 1.15.0 -> 1.17.0
2024-09-27 21:09:13 +00:00
nixpkgs-merge-bot[bot]
5aaceeaf01
syft: 1.12.2 -> 1.13.0 ( #344290 )
2024-09-25 00:41:33 +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
R. Ryantm
fb52378cb1
syft: 1.12.2 -> 1.13.0
2024-09-24 19:54:35 +00:00
h7x4
9a6c76c4af
treewide: remove unused inputs ( #342672 )
2024-09-19 20:36:18 +02:00
Nick Cao
f0d832e36f
syn2mas: 0.10.0 -> 0.12.0 ( #342300 )
2024-09-18 09:09:59 -04:00
Peder Bergebakken Sundt
8c8c27bb19
treewide: remove unused inputs
2024-09-18 01:00:07 +02:00
Fabián Heredia Montiel
08eab35e5f
syslogng: add option to enable grpc module ( #341055 )
2024-09-16 13:36:10 -06:00
teutat3s
75d3a0f1ff
syn2mas: 0.10.0 -> 0.12.0
...
Diff: https://github.com/element-hq/matrix-authentication-service/compare/v0.10.0...v0.12.0
2024-09-16 14:44:58 +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
Gaetan Lepage
803698525e
systemctl-tui: 0.3.7 -> 0.3.8
...
Diff: https://diff.rs/systemctl-tui/0.3.7/0.3.8
Changelog: https://github.com/rgwood/systemctl-tui/releases/tag/v0.3.8
2024-09-14 16:36:23 +02:00
R. Ryantm
2f22292e44
syft: 1.11.1 -> 1.12.2
2024-09-13 16:15:36 +00:00
Cobalt
e2ff45f9b3
syslogng: add option to enable grpc module
...
This adds a package option to build with the grpc module.
This module is required for some outputs, like the loki output, and
other grpc related modules.
2024-09-10 18:43:27 +02:00
eljamm
a97519f058
taler-{sync,challenger}: rename from {sync,challenger}
2024-09-04 12:45:21 +02:00
eljamm
d818afc074
sync: 0.11.0 -> 0.13.1
2024-09-04 12:45:21 +02:00
R. Ryantm
ef4e0e3468
syshud: 0-unstable-2024-08-24 -> 0-unstable-2024-08-27
2024-08-31 10:05:49 +00:00
R. Ryantm
6a03a33fc1
sysdig-cli-scanner: 1.14.0 -> 1.15.0
2024-08-30 07:38:34 +00:00
Donovan Glover
a1a0f19f00
syshud: 0-unstable-2024-08-10 -> 0-unstable-2024-08-24 ( #337415 )
2024-08-29 16:26:38 +00:00
Emery Hemingway
56fab16fa9
syndicate-server: init 0.46.0
...
https://git.syndicate-lang.org/syndicate-lang/syndicate-rs
2024-08-27 11:47:19 +00:00
Colin
143a231244
syshud: apply nixfmt
formatting
2024-08-26 08:03:12 +00:00
Colin
6ae7c3444d
syshud: 0-unstable-2024-08-10 -> 0-unstable-2024-08-24
2024-08-26 08:00:55 +00:00
Gaetan Lepage
fdac5de96c
systemctl-tui: 0.3.6 -> 0.3.7
...
Diff: https://diff.rs/systemctl-tui/0.3.6/0.3.7
Changelog: https://github.com/rgwood/systemctl-tui/releases/tag/v0.3.7
2024-08-22 16:37:22 +02:00
Gaetan Lepage
5b9f7a8359
systemctl-tui: format + testVersion + updateScript
2024-08-22 16:36:48 +02:00
nixpkgs-merge-bot[bot]
3f33387a5c
Merge pull request #336258 from r-ryantm/auto-update/syft
...
syft: 1.11.0 -> 1.11.1
2024-08-21 07:02:47 +00:00
R. Ryantm
706ad5f180
syft: 1.11.0 -> 1.11.1
2024-08-21 04:52:39 +00: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
R. Ryantm
e26d0a24b8
syn2mas: 0.9.0 -> 0.10.0
2024-08-19 16:03:22 +00:00
R. Ryantm
fbfc90fb43
sysdig-cli-scanner: 1.13.2 -> 1.14.0
2024-08-17 04:55:08 +00:00