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: b9f37bfeb8fa
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: d27979d33445
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Jun 1, 2019

  1. googler: 3.8 -> 3.9

    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
    r-ryantm committed Jun 1, 2019
    Copy the full SHA
    22a8709 View commit details
  2. Merge pull request #62423 from r-ryantm/auto-update/googler

    googler: 3.8 -> 3.9
    etu authored Jun 1, 2019
    Copy the full SHA
    d27979d 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.8";
version = "3.9";
name = "googler-${version}";

src = fetchFromGitHub {
owner = "jarun";
repo = "googler";
rev = "v${version}";
sha256 = "0f15rivjdj8r7wwrckcsaxxx129yh41fj4rhz4cbvbsb5f0f2daj";
sha256 = "0zqq157i0rfrja8yqnqr9rfrp5apzc7cxb7d7ppv6abkc5bckyqc";
};

propagatedBuildInputs = [ python ];