coeurl: move to by-name and reformat
This commit is contained in:
+20
-11
@@ -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++";
|
||||
@@ -19180,8 +19180,6 @@ with pkgs;
|
||||
protobuf = protobuf_21;
|
||||
};
|
||||
|
||||
coeurl = callPackage ../development/libraries/coeurl { };
|
||||
|
||||
coercer = callPackage ../tools/security/coercer { };
|
||||
|
||||
cogl = callPackage ../development/libraries/cogl {
|
||||
|
||||
Reference in New Issue
Block a user