about summary refs log tree commit diff
path: root/pkgs/tools/system
AgeCommit message (Collapse)AuthorFilesLines
5 daystreewide: replace `stdenv.is` with `stdenv.hostPlatform.is`Artturin26-61/+61
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" ```
7 daysbtop: 1.3.2 -> 1.4.0R. Ryantm1-2/+2
10 dayszx: 8.1.7 -> 8.1.8José Ribeiro1-3/+3
Diff: https://github.com/google/zx/compare/8.1.7...8.1.8 Changelog: https://github.com/google/zx/releases/tag/8.1.8
10 dayssmartmontools: build with systemdLibs on linux (#342407)Bjørn Forsman1-12/+25
11 daysmediawriter: 5.1.2 -> 5.1.3 (#342799)Fabian Affolter1-2/+2
11 daysmediawriter: 5.1.2 -> 5.1.3R. Ryantm1-2/+2
11 dayszx: 8.1.6 -> 8.1.7 (#342616)Nick Cao1-3/+3
12 daysbfs: 3.1.3 -> 4.0.2Muhammad Falak R Wani1-3/+3
Diff: https://github.com/tavianator/bfs/compare/3.1.3...4.0.2 Signed-off-by: Muhammad Falak R Wani <falakreyaz@gmail.com>
12 daysnsc: 2.8.8 -> 2.8.9 (#342066)Nick Cao1-4/+4
12 dayszx: 8.1.6 -> 8.1.7José Ribeiro1-3/+3
Diff: https://github.com/google/zx/compare/8.1.6...8.1.7 Changelog: https://github.com/google/zx/releases/tag/8.1.7
13 dayssmartmontools: run nixfmth7x41-14/+25
13 dayssmartmontools: build with systemdLibs on linuxh7x41-1/+3
14 daystreewide: remove a bunch of unmaintained and old packages (#341837)Jörg Thalheim1-51/+0
2024-09-15nsc: 2.8.8 -> 2.8.9R. Ryantm1-4/+4
2024-09-15psensor: removealeksana1-51/+0
2024-09-15automatic-timezoned: 2.0.31 -> 2.0.32R. Ryantm1-3/+3
2024-09-13nsc: 2.8.7 -> 2.8.8 (#339686)Weijia Wang1-6/+8
2024-09-12netdata: 1.47.0 -> 1.47.1Austin Horstman1-3/+3
2024-09-12netdata: fix darwinAustin Horstman1-17/+23
2024-09-12netdata: cleanup recAustin Horstman1-8/+8
2024-09-12netdata: formatAustin Horstman1-80/+149
2024-09-13nsc: 2.8.7 -> 2.8.8R. Ryantm1-6/+8
2024-09-13openseachest: 23.12 -> 24.08 (#338086)Weijia Wang1-2/+2
2024-09-11zx: 8.1.5 -> 8.1.6José Ribeiro1-3/+3
Diff: https://github.com/google/zx/compare/8.1.5...8.1.6 Changelog: https://github.com/google/zx/releases/tag/8.1.6
2024-09-11zx: add versionCheckHookJosé Ribeiro1-0/+4
2024-09-11automatic-timezoned: 2.0.30 -> 2.0.31 (#339665)Weijia Wang1-3/+3
2024-09-10java-service-wrapper: 3.5.58 -> 3.5.59 (#329802)Weijia Wang1-2/+2
2024-09-09stress-ng: 0.18.02 -> 0.18.04R. Ryantm1-2/+2
2024-09-05mlc: bump src (#336562)Peder Bergebakken Sundt1-1/+1
2024-09-05netdata: 1.46.1 -> 1.47.0Ryan Horiguchi2-30/+30
2024-09-05automatic-timezoned: 2.0.30 -> 2.0.31R. Ryantm1-3/+3
2024-09-01amtterm: enable SSL support (#338662)Florian Klink1-14/+16
2024-08-31acpica-tools: Move package definition into by-name directoryFelix Singer1-56/+0
Signed-off-by: Felix Singer <felixsinger@posteo.net>
2024-08-31acpica-tools: 20240322 -> 20240827 (#337897)Martin Weinelt1-3/+3
2024-08-31amtterm: enable SSL supportFlorian Klink1-14/+16
Current versions of Intel AMT/vPro only support connecting over SSL, but our current amtterm version isn't built with SSL support. Set the `USE_OPENSSL=1` makeFlag and add openssl and pkg-config. It adds an additional `-C cacert` parameter, which needs to point to a previously downloaded server certificate. The server certificate can be retrieved with `openssl s_client -showcerts -connect $host:16995`. However, due to the use of `UnsafeLegacyRenegotiation`, `OPENSSL_CONF` needs to point to a text file explicitly allowing this: ``` openssl_conf = default_conf [ default_conf ] ssl_conf = ssl_sect [ssl_sect] system_default = ssl_default_sect [ssl_default_sect] Options = UnsafeLegacyRenegotiation ``` With this, I'm able to connect to `/dev/ttyS2` inside the host: ``` ❯ AMT_PASSWORD='supersecret' amtterm $host 16995 -C cert.pem amtterm: NONE -> CONNECT (connection to host) ipv4 $ip [$ip] 16995 open amtterm: CONNECT -> INIT (redirection initialization) amtterm: INIT -> AUTH (session authentication) amtterm: AUTH -> INIT_SOL (serial-over-lan initialization) amtterm: INIT_SOL -> RUN_SOL (serial-over-lan active) serial-over-lan redirection ok connected now, use ^] to escape Hello World ```
2024-08-30tuptime: 5.2.3 -> 5.2.4 (#327150)Sebastián Mancilla1-2/+2
2024-08-29openseachest: 23.12 -> 24.08R. Ryantm1-2/+2
2024-08-29zx: 8.1.4 -> 8.1.5José Ribeiro1-3/+3
Diff: https://github.com/google/zx/compare/8.1.4...8.1.5 Changelog: https://github.com/google/zx/releases/tag/8.1.5
2024-08-29zx: set passthru.updateScriptJosé Ribeiro1-0/+3
2024-08-28glxinfo: replace with mesa-demosSandro Jäckel1-2/+2
2024-08-28acpica-tools: 20240322 -> 20240827Felix Singer1-3/+3
Signed-off-by: Felix Singer <felixsinger@posteo.net>
2024-08-28osquery: add update script (#327267)lewo3-52/+134
2024-08-26tree-wide: remove eelco as maintainer from things he no longer maintains ↵Martin Weinelt1-1/+1
(#336287)
2024-08-24osquery: add update scriptsqualus3-52/+134
- add update script - remove openssl hash verification logic since the hash is computed automatically now in the update script
2024-08-25Merge pull request #303923 from colbs255/bottom-add-desktop-fileFranz Pletz1-0/+2
2024-08-24Merge pull request #336822 from r-ryantm/auto-update/nscNick Cao1-4/+4
nsc: 2.8.6 -> 2.8.7
2024-08-23nsc: 2.8.6 -> 2.8.7R. Ryantm1-4/+4
2024-08-23isc-cron: migrate to by-nameAnderson Torres1-49/+0
2024-08-23Merge pull request #336658 from r-ryantm/auto-update/nats-topFabian Affolter1-3/+3
nats-top: 0.6.1 -> 0.6.2
2024-08-22Merge pull request #331422 from r-ryantm/auto-update/stress-ngSebastián Mancilla1-2/+2
stress-ng: 0.18.01 -> 0.18.02