coeurl: move to by-name and reformat

This commit is contained in:
rnhmjoj
2024-10-11 12:40:38 +02:00
parent a9fc9e87d8
commit 9ed27f014e
2 changed files with 20 additions and 13 deletions
@@ -1,12 +1,13 @@
{ 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++";
-2
View File
@@ -19180,8 +19180,6 @@ with pkgs;
protobuf = protobuf_21;
};
coeurl = callPackage ../development/libraries/coeurl { };
coercer = callPackage ../tools/security/coercer { };
cogl = callPackage ../development/libraries/cogl {