Unverified Commit 9ed27f01 authored by rnhmjoj's avatar rnhmjoj
Browse files

coeurl: move to by-name and reformat

parent a9fc9e87
Loading
Loading
Loading
Loading
+20 −11
Original line number Diff line number Diff line
{ lib
, stdenv
, fetchFromGitLab
, ninja
, pkg-config
, meson
, libevent
, curl
, spdlog
{
  lib,
  stdenv,
  fetchFromGitLab,
  ninja,
  pkg-config,
  meson,
  libevent,
  curl,
  spdlog,
}:

stdenv.mkDerivation rec {
@@ -24,9 +25,17 @@ stdenv.mkDerivation rec {
    substituteInPlace subprojects/curl.wrap --replace '[provides]' '[provide]'
  '';

  nativeBuildInputs = [ ninja pkg-config meson ];
  nativeBuildInputs = [
    ninja
    pkg-config
    meson
  ];

  buildInputs = [ libevent curl spdlog ];
  buildInputs = [
    libevent
    curl
    spdlog
  ];

  meta = with lib; {
    description = "Simple async wrapper around CURL for C++";
+0 −2
Original line number Diff line number Diff line
@@ -19180,8 +19180,6 @@ with pkgs;
    protobuf = protobuf_21;
  };
  coeurl = callPackage ../development/libraries/coeurl { };
  coercer = callPackage ../tools/security/coercer { };
  cogl = callPackage ../development/libraries/cogl {