Files
nixpkgs/pkgs/by-name/co/coeurl/package.nix
Colin e5c71c2cc7 coeurl: remove dead substituteInPlace --replace
this hasn't been required since
41da74de67
2026-03-14 03:29:15 +00:00

45 lines
767 B
Nix

{
lib,
stdenv,
fetchFromGitLab,
ninja,
pkg-config,
meson,
libevent,
curl,
spdlog,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "coeurl";
version = "0.3.2";
src = fetchFromGitLab {
domain = "nheko.im";
owner = "nheko-reborn";
repo = "coeurl";
tag = "v${finalAttrs.version}";
hash = "sha256-8BwyPfLgkJG1CHnRAKxgn8ObEGSK+lKKUhQibs1dCg4=";
};
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 ];
};
})