Add gflags

This commit is contained in:
Shea Levy 2018-01-08 21:25:12 -05:00
parent f4afbf6e77
commit 9d7883374c
No known key found for this signature in database
GPG Key ID: 5C0BD6957D86FE27
2 changed files with 12 additions and 0 deletions

View File

@ -0,0 +1,10 @@
{ stdenv, fetchurl, cmake }:
stdenv.mkDerivation
{ name = "gflags-2.2.1";
src = fetchurl
{ url = "https://github.com/gflags/gflags/archive/v2.2.1.tar.gz";
sha256 = "03lxc2ah8i392kh1naq99iip34k4fpv22kwflyx3byd2ssycs9xf";
};
nativeBuildInputs = [ cmake ];
}

View File

@ -8519,6 +8519,8 @@ with pkgs;
gettext = callPackage ../development/libraries/gettext { };
gflags = callPackage ../development/libraries/gflags { };
gf2x = callPackage ../development/libraries/gf2x {};
gd = callPackage ../development/libraries/gd {