2022-04-09 00:30:19 +01:00
|
|
|
{ stdenv, lib, fetchFromGitHub, cmake, gflags, perl }:
|
2014-01-24 14:51:04 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "glog";
|
2022-04-09 00:30:19 +01:00
|
|
|
version = "0.6.0";
|
2017-10-27 00:44:19 +01:00
|
|
|
|
2015-04-21 23:33:39 +01:00
|
|
|
src = fetchFromGitHub {
|
2017-11-12 13:37:36 +00:00
|
|
|
owner = "google";
|
2015-04-21 23:33:39 +01:00
|
|
|
repo = "glog";
|
|
|
|
rev = "v${version}";
|
2022-04-09 00:30:19 +01:00
|
|
|
sha256 = "sha256-xqRp9vaauBkKz2CXbh/Z4TWqhaUtqfbsSlbYZR/kW9s=";
|
2014-01-24 14:51:04 +00:00
|
|
|
};
|
|
|
|
|
2019-12-16 12:04:53 +00:00
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
|
2020-01-12 21:53:27 +00:00
|
|
|
propagatedBuildInputs = [ gflags ];
|
|
|
|
|
2021-11-04 01:38:03 +00:00
|
|
|
cmakeFlags = [
|
|
|
|
"-DBUILD_SHARED_LIBS=ON"
|
|
|
|
# Mak CMake place RPATHs such that tests will find the built libraries.
|
|
|
|
# See https://github.com/NixOS/nixpkgs/pull/144561#discussion_r742468811 and https://github.com/NixOS/nixpkgs/pull/108496
|
|
|
|
"-DCMAKE_SKIP_BUILD_RPATH=OFF"
|
|
|
|
];
|
2015-04-21 23:33:39 +01:00
|
|
|
|
2021-11-03 22:56:12 +00:00
|
|
|
# TODO: Re-enable Darwin tests once we're on a release that has https://github.com/google/glog/issues/709#issuecomment-960381653 fixed
|
|
|
|
doCheck = !stdenv.isDarwin;
|
2022-03-26 00:39:28 +00:00
|
|
|
# There are some non-thread safe tests that can fail
|
|
|
|
enableParallelChecking = false;
|
2018-08-08 19:31:20 +01:00
|
|
|
checkInputs = [ perl ];
|
2021-11-03 22:56:12 +00:00
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
meta = with lib; {
|
2019-12-16 12:04:53 +00:00
|
|
|
homepage = "https://github.com/google/glog";
|
2015-04-21 23:33:39 +01:00
|
|
|
license = licenses.bsd3;
|
2014-08-24 15:21:08 +01:00
|
|
|
description = "Library for application-level logging";
|
2015-04-21 23:33:39 +01:00
|
|
|
platforms = platforms.unix;
|
2021-11-11 13:47:03 +00:00
|
|
|
maintainers = with maintainers; [ nh2 r-burns ];
|
2014-01-24 14:51:04 +00:00
|
|
|
};
|
|
|
|
}
|