summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorOrivej Desh <orivej@gmx.fr>2019-07-25 09:04:55 +0000
committerOrivej Desh <orivej@gmx.fr>2019-07-25 09:18:32 +0000
commitb5d1d50aa90e0780c57fb4b323203ea5056be857 (patch)
tree7f5977d5c5182cdbe83eac1db1edbef0e3a30cf4 /pkgs/tools
parent2f55e705e282753492dd81f73852781255a6ec81 (diff)
downloadnixpkgs-b5d1d50aa90e0780c57fb4b323203ea5056be857.tar
nixpkgs-b5d1d50aa90e0780c57fb4b323203ea5056be857.tar.gz
nixpkgs-b5d1d50aa90e0780c57fb4b323203ea5056be857.tar.bz2
nixpkgs-b5d1d50aa90e0780c57fb4b323203ea5056be857.tar.lz
nixpkgs-b5d1d50aa90e0780c57fb4b323203ea5056be857.tar.xz
nixpkgs-b5d1d50aa90e0780c57fb4b323203ea5056be857.tar.zst
nixpkgs-b5d1d50aa90e0780c57fb4b323203ea5056be857.zip
google-gflags: move to aliases.nix
google-gflags were renamed to gflags in 2012:
https://github.com/gflags/gflags/#25-january-2012

gflags.name will be updated in staging.
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/system/osquery/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/system/osquery/default.nix b/pkgs/tools/system/osquery/default.nix
index 80341e88dd0..c34b53c1e62 100644
--- a/pkgs/tools/system/osquery/default.nix
+++ b/pkgs/tools/system/osquery/default.nix
@@ -1,7 +1,7 @@
 { stdenv, lib, fetchFromGitHub, pkgconfig, cmake, python
 , udev, audit, aws-sdk-cpp, cryptsetup, lvm2, libgcrypt, libarchive
 , libgpgerror, libuuid, iptables, dpkg, lzma, bzip2, rpm
-, beecrypt, augeas, libxml2, sleuthkit, yara, lldpd, google-gflags
+, beecrypt, augeas, libxml2, sleuthkit, yara, lldpd, gflags
 , thrift, boost, rocksdb_lite, glog, gbenchmark, snappy
 , openssl, file, doxygen
 , gtest, fpm, zstd, rdkafka, rapidjson, fetchgit, fetchurl, libelfin
@@ -53,7 +53,7 @@ let
 
     # filter out static linking configuration to avoid that the library will
     # be linked both statically and dynamically.
-    gflags = google-gflags.overrideAttrs (old: {
+    gflags = gflags.overrideAttrs (old: {
       cmakeFlags = stdenv.lib.filter (f: (builtins.match ".*STATIC.*" f) == null) old.cmakeFlags;
     });
   };