depot/third_party/nixpkgs/pkgs/development/libraries/yder/default.nix
Default email 02cf88bb76 Project import generated by Copybara.
GitOrigin-RevId: c4a0efdd5a728e20791b8d8d2f26f90ac228ee8d
2022-08-12 15:06:08 +03:00

49 lines
1 KiB
Nix

{ stdenv
, lib
, fetchFromGitHub
, cmake
, orcania
, systemd
, check
, subunit
, withSystemd ? stdenv.isLinux
}:
stdenv.mkDerivation rec {
pname = "yder";
version = "1.4.17";
src = fetchFromGitHub {
owner = "babelouest";
repo = pname;
rev = "v${version}";
sha256 = "sha256-4o1sKxlWeAgZZm01sPV2yIR3xXZwzPJwqcGCkz6+Cfc=";
};
patches = [
# We set CMAKE_INSTALL_LIBDIR to the absolute path in $out, so
# prefix and exec_prefix cannot be $out, too
./fix-pkgconfig.patch
];
nativeBuildInputs = [ cmake ];
buildInputs = [ orcania ]
++ lib.optional withSystemd systemd;
checkInputs = [ check subunit ];
cmakeFlags = [
"-DBUILD_YDER_TESTING=on"
] ++ lib.optional (!withSystemd) "-DWITH_JOURNALD=off";
doCheck = true;
meta = with lib; {
description = "Logging library for C applications";
homepage = "https://github.com/babelouest/yder";
license = licenses.lgpl21;
maintainers = with maintainers; [ johnazoidberg ];
platforms = platforms.all;
};
}