From 1d1a81a4496c53503e3bf8541c14a3aff142fa41 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Mon, 28 May 2018 05:49:25 -0700 Subject: [PATCH] googler: 3.5 -> 3.6 (#41064) Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/googler/versions. These checks were done: - built on NixOS - /nix/store/j4h3gxrjzx798n8qrpk6l4v2a2k3awvm-googler-3.6/bin/googler passed the binary check. - 1 of 1 passed binary check by having a zero exit code. - 1 of 1 passed binary check by having the new version present in output. - found 3.6 with grep in /nix/store/j4h3gxrjzx798n8qrpk6l4v2a2k3awvm-googler-3.6 - directory tree listing: https://gist.github.com/bf1d55519dae4406e4f5bdbd78c44644 - du listing: https://gist.github.com/805653ac2fcc2c1c10d65d1e5298620e --- pkgs/applications/misc/googler/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/misc/googler/default.nix b/pkgs/applications/misc/googler/default.nix index 3b8b08c1b66..ca6ccdcdb2a 100644 --- a/pkgs/applications/misc/googler/default.nix +++ b/pkgs/applications/misc/googler/default.nix @@ -1,14 +1,14 @@ {stdenv, fetchFromGitHub, python}: stdenv.mkDerivation rec { - version = "3.5"; + version = "3.6"; name = "googler-${version}"; src = fetchFromGitHub { owner = "jarun"; repo = "googler"; rev = "v${version}"; - sha256 = "0z5cngg1kr3b484zddqlg9yn7crbmnd78pdb8vzd32mkp3fahcxa"; + sha256 = "1j1755b9mfmkqkgjrlsi4wr82352pqc9rfyalammqn6qrm3v3lb6"; }; propagatedBuildInputs = [ python ];