mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 20:03:16 +00:00
Merge pull request #38157 from aperiodic/gflags-darwin-fix
gflags: fix build on case-insensitive filesystems
This commit is contained in:
commit
7a33e5727b
@ -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;
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user