From c6059ff8b6dee55564aca53338dd8c4e619698e1 Mon Sep 17 00:00:00 2001 From: Thiago Kenji Okada Date: Mon, 5 Dec 2022 14:12:38 +0000 Subject: [PATCH] resholve: use system from stdenv.hostPlatform instead of alias --- pkgs/development/misc/resholve/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/misc/resholve/default.nix b/pkgs/development/misc/resholve/default.nix index 6b8e71994189..3e901070a2e2 100644 --- a/pkgs/development/misc/resholve/default.nix +++ b/pkgs/development/misc/resholve/default.nix @@ -1,12 +1,12 @@ { lib +, stdenv , pkgsBuildHost -, system , ... }: let pkgs = import ../../../.. { - inherit system; + inherit (stdenv.hostPlatform) system; # Allow python27 with known security issues only for resholve, # see issue #201859 for the reasoning # In resholve case this should not be a security issue,