nixpkgs/pkgs/development/libraries/google-gflags/default.nix

40 lines
1.1 KiB
Nix
Raw Normal View History

2015-06-17 00:32:15 +00:00
{ stdenv, fetchFromGitHub, cmake }:
2014-02-10 15:27:44 +00:00
stdenv.mkDerivation rec {
2015-06-17 00:32:15 +00:00
name = "google-gflags-${version}";
version = "2.2.0";
2014-02-10 15:27:44 +00:00
2015-06-17 00:32:15 +00:00
src = fetchFromGitHub {
owner = "gflags";
repo = "gflags";
rev = "v${version}";
sha256 = "1y5808ky8qhjwv1nf134czz0h2p2faqvjhxa9zxf8mg8hn4ns9wp";
2014-02-10 15:27:44 +00:00
};
2015-06-17 00:32:15 +00:00
nativeBuildInputs = [ cmake ];
# This isn't used by the build and breaks the CMake build on case-insensitive filesystems (e.g., on Darwin)
preConfigure = "rm BUILD";
2015-06-17 00:32:15 +00:00
cmakeFlags = [
"-DBUILD_SHARED_LIBS=ON"
"-DBUILD_STATIC_LIBS=ON"
"-DBUILD_TESTING=${if doCheck then "ON" else "OFF"}"
];
doCheck = false;
2014-02-10 15:27:44 +00:00
meta = with stdenv.lib; {
2014-02-10 15:27:44 +00:00
description = "A C++ library that implements commandline flags processing";
longDescription = ''
The gflags package contains a C++ library that implements commandline flags processing.
As such it's a replacement for getopt().
It was owned by Google. google-gflags project has been renamed to gflags and maintained by new community.
'';
homepage = https://gflags.github.io/gflags/;
license = licenses.bsd3;
maintainers = [ maintainers.linquize ];
platforms = platforms.all;
2014-02-10 15:27:44 +00:00
};
}