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

Commits on Nov 12, 2019

  1. buildah: v1.11.4 -> v1.11.5

    Signed-off-by: Sascha Grunert <sgrunert@suse.com>
    saschagrunert authored and FRidh committed Nov 12, 2019
    Copy the full SHA
    2c09a37 View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 pkgs/development/tools/buildah/default.nix
6 changes: 3 additions & 3 deletions pkgs/development/tools/buildah/default.nix
Original file line number Diff line number Diff line change
@@ -4,13 +4,13 @@

buildGoPackage rec {
pname = "buildah";
version = "1.11.4";
version = "1.11.5";

src = fetchFromGitHub {
owner = "containers";
repo = "buildah";
rev = "v${version}";
sha256 = "11jdjrmyafy3fnnp4cdxh3fncjbcy7gggpzwp4n857ij7k2581hl";
sha256 = "09bfv2pypd66dnqvrhgcg35fsahi2k0kn5dnnbfqc39g0vfz29r7";
};

outputs = [ "bin" "man" "out" ];
@@ -35,6 +35,6 @@ buildGoPackage rec {
description = "A tool which facilitates building OCI images";
homepage = "https://github.com/containers/buildah";
license = licenses.asl20;
maintainers = with maintainers; [ Profpatsch vdemeester ];
maintainers = with maintainers; [ Profpatsch vdemeester saschagrunert ];
};
}