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: 80f960575d19
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 0a3e4d9ff088
Choose a head ref
  • 2 commits
  • 2 files changed
  • 1 contributor

Commits on Jul 23, 2020

  1. Copy the full SHA
    2a5f272 View commit details
  2. Copy the full SHA
    0a3e4d9 View commit details
Showing with 4 additions and 4 deletions.
  1. +2 −2 pkgs/development/python-modules/ansible/default.nix
  2. +2 −2 pkgs/tools/admin/ansible/default.nix
4 changes: 2 additions & 2 deletions pkgs/development/python-modules/ansible/default.nix
Original file line number Diff line number Diff line change
@@ -18,13 +18,13 @@

buildPythonPackage rec {
pname = "ansible";
version = "2.9.10";
version = "2.9.11";

src = fetchFromGitHub {
owner = "ansible";
repo = "ansible";
rev = "v${version}";
sha256 = "1979522k57gafvq9vx3lbc3zah7jq3kiy98ji9x5bmxyddmgr9ch";
sha256 = "0a9wgd1ri1av6rcwld36sa48v42003pdf1fx9hhkmhz4icyij0kx";
};

prePatch = ''
4 changes: 2 additions & 2 deletions pkgs/tools/admin/ansible/default.nix
Original file line number Diff line number Diff line change
@@ -7,11 +7,11 @@ rec {

ansible_2_8 = python3Packages.toPythonApplication (python3Packages.ansible.overridePythonAttrs (old: rec {
pname = "ansible";
version = "2.8.12";
version = "2.8.13";

src = fetchurl {
url = "https://releases.ansible.com/ansible/${pname}-${version}.tar.gz";
sha256 = "091id1da3hlnmf0hwvrhv2r0mnyna3mc6s7rwdg5kll7yfiy4k1a";
sha256 = "09a0wa5l2vyy8n2hwvq9ikc77a9xm9k19rnkvcnnkbqwv1fl36zb";
};
}));