Unverified Commit f2ac05ce authored by Olivér Falvai's avatar Olivér Falvai
Browse files

1password-cli: define nativeBuildInputs properly

This is required when strictDeps = true
parent 96cc2f54
Loading
Loading
Loading
Loading
+10 −9
Original line number Diff line number Diff line
@@ -45,12 +45,13 @@ stdenv.mkDerivation {
    else
      throw "Source for ${pname} is not available for ${system}";

  nativeBuildInputs = [
  nativeBuildInputs =
    [
      installShellFiles
      versionCheckHook
  ] ++ lib.optional stdenv.hostPlatform.isLinux autoPatchelfHook;

  buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [
    ]
    ++ lib.optional stdenv.hostPlatform.isLinux autoPatchelfHook
    ++ lib.optional stdenv.hostPlatform.isDarwin [
      xar
      cpio
    ];