Merge pull request #38157 from aperiodic/gflags-darwin-fix

gflags: fix build on case-insensitive filesystems
This commit is contained in:
Daiderd Jordan 2018-04-01 09:23:43 +02:00 committed by GitHub
commit 7a33e5727b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -7,4 +7,13 @@ stdenv.mkDerivation
sha256 = "03lxc2ah8i392kh1naq99iip34k4fpv22kwflyx3byd2ssycs9xf";
};
nativeBuildInputs = [ cmake ];
# for case-insensitive filesystems
prePatch = "mv BUILD BUILD.bazel";
meta = with stdenv.lib; {
description = "C++ library that implements commandline flags processing";
homepage = "https://github.com/gflags/gflags";
license = licenses.bsd3;
platforms = platforms.unix;
};
}