chore(3p): Remove glog override

This library is being vendored, hence the override doesn't matter
anymore.
This commit is contained in:
Vincent Ambo 2020-05-27 01:25:11 +01:00
parent 2e32ceb523
commit 7dc094173b
2 changed files with 1 additions and 16 deletions

View file

@ -162,7 +162,7 @@ in exposed // {
# Packages to be overridden
originals = {
inherit (nixpkgs) abseil-cpp glog notmuch;
inherit (nixpkgs) abseil-cpp notmuch;
inherit (stableNixpkgs) git;
ffmpeg = nixpkgs.ffmpeg-full;
};

View file

@ -1,15 +0,0 @@
{ 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";
};
})