2020-01-14 14:56:19 +00:00
|
|
|
{ stdenv, lib, fetchFromGitHub, fetchpatch, cmake, gflags, perl }:
|
2014-01-24 14:51:04 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "glog";
|
2021-11-03 22:56:12 +00:00
|
|
|
version = "0.5.0";
|
2017-10-26 23:44:19 +00:00
|
|
|
|
2015-04-21 22:33:39 +00:00
|
|
|
src = fetchFromGitHub {
|
2017-11-12 13:37:36 +00:00
|
|
|
owner = "google";
|
2015-04-21 22:33:39 +00:00
|
|
|
repo = "glog";
|
|
|
|
rev = "v${version}";
|
2021-11-03 22:56:12 +00:00
|
|
|
sha256 = "17014q25c99qyis6l3fwxidw6222bb269fdlr74gn7pzmzg4lvg3";
|
2014-01-24 14:51:04 +00:00
|
|
|
};
|
|
|
|
|
2021-11-03 22:56:12 +00:00
|
|
|
patches = [
|
|
|
|
# Fix duplicate-concatenated nix store path in cmake file, see:
|
|
|
|
# https://github.com/NixOS/nixpkgs/pull/144561#issuecomment-960296043
|
|
|
|
# TODO: Remove when https://github.com/google/glog/pull/733 is merged and available.
|
2019-12-15 03:02:41 +00:00
|
|
|
(fetchpatch {
|
2021-11-03 22:56:12 +00:00
|
|
|
name = "glog-cmake-Fix-incorrect-relative-path-concatenation.patch";
|
|
|
|
url = "https://github.com/google/glog/pull/733/commits/57c636c02784f909e4b5d3c2f0ecbdbb47097266.patch";
|
|
|
|
sha256 = "1py93gkzmcyi2ypcwyj3nri210z8fmlaif51yflzmrrv507zd7bi";
|
2019-12-15 03:02:41 +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 22:33:39 +00: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;
|
2018-08-08 18:31:20 +00: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 22:33:39 +00:00
|
|
|
license = licenses.bsd3;
|
2014-08-24 14:21:08 +00:00
|
|
|
description = "Library for application-level logging";
|
2015-04-21 22:33:39 +00: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
|
|
|
};
|
|
|
|
}
|