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

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

50 lines
1.7 KiB
Nix
Raw Normal View History

2020-01-14 15:56:19 +01:00
{ stdenv, lib, fetchFromGitHub, fetchpatch, cmake, gflags, perl }:
2014-01-24 15:51:04 +01:00
stdenv.mkDerivation rec {
pname = "glog";
version = "0.5.0";
2015-04-22 00:33:39 +02:00
src = fetchFromGitHub {
2017-11-12 14:37:36 +01:00
owner = "google";
2015-04-22 00:33:39 +02:00
repo = "glog";
rev = "v${version}";
sha256 = "17014q25c99qyis6l3fwxidw6222bb269fdlr74gn7pzmzg4lvg3";
2014-01-24 15:51:04 +01: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.
(fetchpatch {
name = "glog-cmake-Fix-incorrect-relative-path-concatenation.patch";
url = "https://github.com/google/glog/pull/733/commits/57c636c02784f909e4b5d3c2f0ecbdbb47097266.patch";
sha256 = "1py93gkzmcyi2ypcwyj3nri210z8fmlaif51yflzmrrv507zd7bi";
})
];
2019-12-16 13:04:53 +01:00
nativeBuildInputs = [ cmake ];
propagatedBuildInputs = [ gflags ];
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-22 00:33:39 +02: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;
# There are some non-thread safe tests that can fail
enableParallelChecking = false;
2018-08-08 20:31:20 +02:00
checkInputs = [ perl ];
meta = with lib; {
2019-12-16 13:04:53 +01:00
homepage = "https://github.com/google/glog";
2015-04-22 00:33:39 +02:00
license = licenses.bsd3;
description = "Library for application-level logging";
2015-04-22 00:33:39 +02:00
platforms = platforms.unix;
2021-11-11 14:47:03 +01:00
maintainers = with maintainers; [ nh2 r-burns ];
2014-01-24 15:51:04 +01:00
};
}