chore(pm): replace pkgs.system uses #130

merged
opened by a.starrysky.fyi targeting main from private/minion/push-mlmuvqqtptlt

For fixing the warning

trace: evaluation warning: 'system' has been renamed to/replaced by 'stdenv.hostPlatform.system'

Changed files
+2 -3
packetmix
packages
josh
opensearch
+2 -2
packetmix/packages/josh/default.nix
··· 6 config.packages.josh = { 7 systems = [ "x86_64-linux" ]; 8 package = 9 - { system, rustPlatform, ... }: 10 - config.inputs.nixos-unstable.result.${system}.josh.overrideAttrs { 11 src = config.inputs.josh.result; 12 13 cargoDeps = rustPlatform.fetchCargoVendor {
··· 6 config.packages.josh = { 7 systems = [ "x86_64-linux" ]; 8 package = 9 + { stdenv, rustPlatform, ... }: 10 + config.inputs.nixos-unstable.result.${stdenv.hostPlatform.system}.josh.overrideAttrs { 11 src = config.inputs.josh.result; 12 13 cargoDeps = rustPlatform.fetchCargoVendor {
-1
packetmix/packages/opensearch/default.nix
··· 7 systems = [ "x86_64-linux" ]; 8 package = 9 { 10 - system, 11 opensearch, 12 jdk11_headless, 13 ...
··· 7 systems = [ "x86_64-linux" ]; 8 package = 9 { 10 opensearch, 11 jdk11_headless, 12 ...