about summary refs log tree commit diff
path: root/pkgs/applications/science/math/caffe
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/applications/science/math/caffe
parent2f55e705e282753492dd81f73852781255a6ec81 (diff)
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/applications/science/math/caffe')
-rw-r--r--pkgs/applications/science/math/caffe/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/science/math/caffe/default.nix b/pkgs/applications/science/math/caffe/default.nix
index 153ebaa441f50..e8171bcb256a6 100644
--- a/pkgs/applications/science/math/caffe/default.nix
+++ b/pkgs/applications/science/math/caffe/default.nix
@@ -3,7 +3,7 @@
 , fetchurl
 , cmake
 , boost
-, google-gflags
+, gflags
 , glog
 , hdf5-cpp
 , opencv3
@@ -63,7 +63,7 @@ stdenv.mkDerivation rec {
       ++ ["-DUSE_LEVELDB=${toggle leveldbSupport}"]
       ++ ["-DUSE_LMDB=${toggle lmdbSupport}"];
 
-  buildInputs = [ boost google-gflags glog protobuf hdf5-cpp opencv3 openblas ]
+  buildInputs = [ boost gflags glog protobuf hdf5-cpp opencv3 openblas ]
                 ++ lib.optional cudaSupport cudatoolkit
                 ++ lib.optional cudnnSupport cudnn
                 ++ lib.optional lmdbSupport lmdb