Unverified Commit 0a91a790 authored by Simon Menke's avatar Simon Menke
Browse files

hurl: Use nix curl instead of bundled curl to enable http2 support

parent 48e2d195
Loading
Loading
Loading
Loading
+5 −10
Original line number Diff line number Diff line
@@ -2,12 +2,10 @@
  lib,
  rustPlatform,
  fetchFromGitHub,
  fetchpatch,
  pkg-config,
  installShellFiles,
  libxml2,
  openssl,
  stdenv,
  curl,
  versionCheckHook,
}:
@@ -31,12 +29,9 @@ rustPlatform.buildRustPackage rec {
    installShellFiles
  ];

  buildInputs =
    [
  buildInputs = [
    libxml2
    openssl
    ]
    ++ lib.optionals stdenv.hostPlatform.isDarwin [
    curl
  ];