Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 4e965c62705e
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 1d1a81a4496c
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on May 28, 2018

  1. 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
    r-ryantm authored and xeji committed May 28, 2018
    Copy the full SHA
    1d1a81a View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/applications/misc/googler/default.nix
4 changes: 2 additions & 2 deletions pkgs/applications/misc/googler/default.nix
Original file line number Diff line number Diff line change
@@ -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 ];