nixpkgs/pkgs/development/libraries/yder/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

50 lines
1.0 KiB
Nix
Raw Normal View History

2021-08-08 03:22:27 +00:00
{ stdenv
, lib
, fetchFromGitHub
, cmake
, orcania
, systemd
, check
, subunit
2019-07-04 07:50:15 +00:00
, withSystemd ? stdenv.isLinux
}:
2021-08-08 03:22:27 +00:00
2019-06-27 23:44:45 +00:00
stdenv.mkDerivation rec {
pname = "yder";
2022-08-05 21:13:24 +00:00
version = "1.4.17";
2019-06-27 23:44:45 +00:00
src = fetchFromGitHub {
owner = "babelouest";
repo = pname;
rev = "v${version}";
2022-08-05 21:13:24 +00:00
sha256 = "sha256-4o1sKxlWeAgZZm01sPV2yIR3xXZwzPJwqcGCkz6+Cfc=";
2019-06-27 23:44:45 +00:00
};
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 ];
2021-08-08 03:22:27 +00:00
buildInputs = [ orcania ]
++ lib.optional withSystemd systemd;
2019-06-27 23:44:45 +00:00
checkInputs = [ check subunit ];
cmakeFlags = [
"-DBUILD_YDER_TESTING=on"
2019-07-04 07:50:15 +00:00
] ++ lib.optional (!withSystemd) "-DWITH_JOURNALD=off";
2019-06-27 23:44:45 +00:00
doCheck = true;
meta = with lib; {
description = "Logging library for C applications";
homepage = "https://github.com/babelouest/yder";
license = licenses.lgpl21;
maintainers = with maintainers; [ johnazoidberg ];
2019-07-04 07:50:15 +00:00
platforms = platforms.all;
2019-06-27 23:44:45 +00:00
};
}