1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

Merge pull request #1727 from linquize/google-gflags

google-gflags: add 2.0
This commit is contained in:
Domen Kožar 2014-02-11 01:04:06 +01:00
commit 02247b95e8
2 changed files with 28 additions and 0 deletions

View file

@ -0,0 +1,26 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "google-gflags-2.0";
src = fetchurl {
url = "https://gflags.googlecode.com/files/gflags-2.0.tar.gz";
sha256 = "1mypfahsfy0piavhf7il2jfs1gq7jp6yarl9sq5hhypj34s5sjnf";
};
doCheck = true;
meta = {
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;
};
}

View file

@ -4295,6 +4295,8 @@ let
goocanvas = callPackage ../development/libraries/goocanvas { };
google-gflags = callPackage ../development/libraries/google-gflags { };
gperftools = callPackage ../development/libraries/gperftools { };
gst_all_1 = recurseIntoAttrs(callPackage ../development/libraries/gstreamer { });