Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
48 lines
869 B
Nix
48 lines
869 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitLab,
|
|
ninja,
|
|
pkg-config,
|
|
meson,
|
|
libevent,
|
|
curl,
|
|
spdlog,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "coeurl";
|
|
version = "0.3.1";
|
|
|
|
src = fetchFromGitLab {
|
|
domain = "nheko.im";
|
|
owner = "nheko-reborn";
|
|
repo = "coeurl";
|
|
tag = "v${finalAttrs.version}";
|
|
hash = "sha256-NGplM5c/dMGSQbhKeuPOTWL8KsqvMd/76YuwCxnqNNE=";
|
|
};
|
|
postPatch = ''
|
|
substituteInPlace subprojects/curl.wrap --replace '[provides]' '[provide]'
|
|
'';
|
|
|
|
nativeBuildInputs = [
|
|
ninja
|
|
pkg-config
|
|
meson
|
|
];
|
|
|
|
buildInputs = [
|
|
libevent
|
|
curl
|
|
spdlog
|
|
];
|
|
|
|
meta = {
|
|
description = "Simple async wrapper around CURL for C++";
|
|
homepage = "https://nheko.im/nheko-reborn/coeurl";
|
|
license = lib.licenses.mit;
|
|
platforms = lib.platforms.all;
|
|
maintainers = with lib.maintainers; [ rnhmjoj ];
|
|
};
|
|
})
|