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

Commits on May 31, 2019

  1. skopeo: 0.1.35 -> 0.1.36

    Signed-off-by: Vincent Demeester <vincent@sbr.pm>
    vdemeester committed May 31, 2019
    Copy the full SHA
    d0207fd View commit details
  2. Merge pull request #62287 from vdemeester/update-skopeo

    skopeo: 0.1.35 -> 0.1.36
    adisbladis authored May 31, 2019
    Copy the full SHA
    776922c View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/development/tools/skopeo/default.nix
4 changes: 2 additions & 2 deletions pkgs/development/tools/skopeo/default.nix
Original file line number Diff line number Diff line change
@@ -5,13 +5,13 @@
with stdenv.lib;

let
version = "0.1.35";
version = "0.1.36";

src = fetchFromGitHub {
rev = "v${version}";
owner = "containers";
repo = "skopeo";
sha256 = "0lp1w8w0jr6x1gnx8lcrc7cqkv3xirrfvan51b7mrzckr9bc45bf";
sha256 = "0q0d6dzx9q57fim0drxs7l45500f3228wq50vzj232x5qx5h00sj";
};

defaultPolicyFile = runCommand "skopeo-default-policy.json" {} "cp ${src}/default-policy.json $out";