about summary refs log tree commit diff
path: root/third_party/glog
diff options
context:
space:
mode:
authorVincent Ambo <tazjin@google.com>2020-05-18T01·39+0100
committerVincent Ambo <tazjin@google.com>2020-05-18T01·39+0100
commitce99ba42df493bb521f47789fb8902d7693c5b9c (patch)
treef3aa98e4f9e897423d098e8ae7cd043865307d8f /third_party/glog
parent6dc6c29fa4a4ddd3bb72f8415fac5936d719bd44 (diff)
feat(3p/glog): Update glog version r/755
Diffstat (limited to 'third_party/glog')
-rw-r--r--third_party/glog/default.nix15
1 files changed, 15 insertions, 0 deletions
diff --git a/third_party/glog/default.nix b/third_party/glog/default.nix
new file mode 100644
index 0000000000..c51724e27b
--- /dev/null
+++ b/third_party/glog/default.nix
@@ -0,0 +1,15 @@
+{ pkgs, ... }:
+
+pkgs.originals.glog.overrideAttrs(old: {
+  version = "master-20200518";
+
+  # packaged version has a patch that is now in master.
+  patches = [];
+
+  src = pkgs.fetchFromGitHub {
+    owner = "google";
+    repo = "glog";
+    rev = "0a2e5931bd5ff22fd3bf8999eb8ce776f159cda6";
+    sha256 = "08yih0hc63j02p0ms4ydbgf2c13v2c7knjzp3qdin0v3sng896wg";
+  };
+})