mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-08-27 02:34:53 +00:00
45 lines
767 B
Nix
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 ];
|
|
};
|
|
})
|