about summary refs log tree commit diff
path: root/pkgs/development/libraries/google-gflags
diff options
context:
space:
mode:
authorndowens <ndowens04@gmail.com>2017-03-12 18:47:22 -0500
committerndowens <ndowens04@gmail.com>2017-03-14 16:04:27 -0500
commite721905d0f7c82be94a347f022bdd238b919de9d (patch)
tree5ba3b2b80a703d6b949fe8c29a783b089b1fb70b /pkgs/development/libraries/google-gflags
parent496120c19f710e1a317f606dc067664a6751370d (diff)
downloadnixlib-e721905d0f7c82be94a347f022bdd238b919de9d.tar
nixlib-e721905d0f7c82be94a347f022bdd238b919de9d.tar.gz
nixlib-e721905d0f7c82be94a347f022bdd238b919de9d.tar.bz2
nixlib-e721905d0f7c82be94a347f022bdd238b919de9d.tar.lz
nixlib-e721905d0f7c82be94a347f022bdd238b919de9d.tar.xz
nixlib-e721905d0f7c82be94a347f022bdd238b919de9d.tar.zst
nixlib-e721905d0f7c82be94a347f022bdd238b919de9d.zip
google-gflags: 2.1.2 -> 2.2.0
google-gflags: Changed homepage
Diffstat (limited to 'pkgs/development/libraries/google-gflags')
-rw-r--r--pkgs/development/libraries/google-gflags/default.nix15
1 files changed, 7 insertions, 8 deletions
diff --git a/pkgs/development/libraries/google-gflags/default.nix b/pkgs/development/libraries/google-gflags/default.nix
index 1423a5a9efcf..0f089d16eadd 100644
--- a/pkgs/development/libraries/google-gflags/default.nix
+++ b/pkgs/development/libraries/google-gflags/default.nix
@@ -2,13 +2,13 @@
 
 stdenv.mkDerivation rec {
   name = "google-gflags-${version}";
-  version = "2.1.2";
+  version = "2.2.0";
 
   src = fetchFromGitHub {
     owner = "gflags";
     repo = "gflags";
     rev = "v${version}";
-    sha256 = "0qxvr9cyxq3px60jglkm94pq5bil8dkjjdb99l3ypqcds7iypx9w";
+    sha256 = "1y5808ky8qhjwv1nf134czz0h2p2faqvjhxa9zxf8mg8hn4ns9wp";
   };
 
   nativeBuildInputs = [ cmake ];
@@ -21,17 +21,16 @@ stdenv.mkDerivation rec {
 
   doCheck = false;
 
-  meta = {
+  meta = with stdenv.lib; {
     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://code.google.com/p/gflags/;
-    license = stdenv.lib.licenses.bsd3;
-
-    maintainers = [ stdenv.lib.maintainers.linquize ];
-    platforms = stdenv.lib.platforms.all;
+    homepage = https://gflags.github.io/gflags/;
+    license = licenses.bsd3;
+    maintainers = [ maintainers.linquize ];
+    platforms = platforms.all;
   };
 }