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: 19ac4ae59ae0
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: bbb299c8e41e
Choose a head ref
  • 10 commits
  • 9 files changed
  • 2 contributors

Commits on Apr 3, 2020

  1. Copy the full SHA
    d2556f0 View commit details
  2. conmon: update maintainers

    zowoq committed Apr 3, 2020
    Copy the full SHA
    6f052a9 View commit details
  3. crun: update maintainers

    zowoq committed Apr 3, 2020
    Copy the full SHA
    f85106b View commit details
  4. podman: update maintainers

    zowoq committed Apr 3, 2020
    Copy the full SHA
    edd336f View commit details
  5. runc: update maintainers

    zowoq committed Apr 3, 2020
    Copy the full SHA
    163d905 View commit details
  6. buildah: update maintainers

    zowoq committed Apr 3, 2020
    Copy the full SHA
    2af7c9c View commit details
  7. skopeo: update maintainers

    zowoq committed Apr 3, 2020
    Copy the full SHA
    878589a View commit details
  8. Copy the full SHA
    ab00d36 View commit details
  9. Copy the full SHA
    4bbd415 View commit details

Commits on Apr 9, 2020

  1. Merge pull request #84177 from zowoq/team

    maintainers/teams: add podman team
    jtojnar authored Apr 9, 2020
    Copy the full SHA
    bbb299c View commit details
9 changes: 9 additions & 0 deletions maintainers/team-list.nix
Original file line number Diff line number Diff line change
@@ -30,4 +30,13 @@ with lib.maintainers; {
];
scope = "Maintain GNOME desktop environment and platform.";
};

podman = {
members = [
saschagrunert
vdemeester
zowoq
];
scope = "Maintain podman related packages.";
};
}
2 changes: 1 addition & 1 deletion pkgs/applications/virtualization/conmon/default.nix
Original file line number Diff line number Diff line change
@@ -27,7 +27,7 @@ stdenv.mkDerivation rec {
homepage = "https://github.com/containers/conmon";
description = "An OCI container runtime monitor";
license = licenses.asl20;
maintainers = with maintainers; [ vdemeester saschagrunert ];
maintainers = with maintainers; [ ] ++ teams.podman.members;
platforms = platforms.linux;
};
}
1 change: 1 addition & 0 deletions pkgs/applications/virtualization/crun/default.nix
Original file line number Diff line number Diff line change
@@ -67,5 +67,6 @@ stdenv.mkDerivation rec {
license = licenses.gpl2Plus;
platforms = platforms.linux;
inherit (src.meta) homepage;
maintainers = with maintainers; [ ] ++ teams.podman.members;
};
}
2 changes: 1 addition & 1 deletion pkgs/applications/virtualization/podman/default.nix
Original file line number Diff line number Diff line change
@@ -41,7 +41,7 @@ buildGoPackage rec {
homepage = "https://podman.io/";
description = "A program for managing pods, containers and container images";
license = licenses.asl20;
maintainers = with maintainers; [ vdemeester saschagrunert marsam ];
maintainers = with maintainers; [ marsam ] ++ teams.podman.members;
platforms = platforms.unix;
};
}
2 changes: 1 addition & 1 deletion pkgs/applications/virtualization/runc/default.nix
Original file line number Diff line number Diff line change
@@ -53,7 +53,7 @@ buildGoPackage rec {
homepage = https://runc.io/;
description = "A CLI tool for spawning and running containers according to the OCI specification";
license = licenses.asl20;
maintainers = with maintainers; [ offline vdemeester saschagrunert ];
maintainers = with maintainers; [ offline ] ++ teams.podman.members;
platforms = platforms.linux;
};
}
2 changes: 1 addition & 1 deletion pkgs/development/tools/buildah/default.nix
Original file line number Diff line number Diff line change
@@ -39,6 +39,6 @@ buildGoPackage rec {
homepage = "https://buildah.io/";
changelog = "https://github.com/containers/buildah/releases/tag/v${version}";
license = licenses.asl20;
maintainers = with maintainers; [ Profpatsch vdemeester saschagrunert ];
maintainers = with maintainers; [ Profpatsch ] ++ teams.podman.members;
};
}
6 changes: 3 additions & 3 deletions pkgs/development/tools/skopeo/default.nix
Original file line number Diff line number Diff line change
@@ -49,10 +49,10 @@ buildGoPackage {
popd
'';

meta = {
meta = with stdenv.lib; {
description = "A command line utility for various operations on container images and image repositories";
homepage = "https://github.com/containers/skopeo";
maintainers = with stdenv.lib.maintainers; [ vdemeester lewo ];
license = stdenv.lib.licenses.asl20;
maintainers = with maintainers; [ lewo ] ++ teams.podman.members;
license = licenses.asl20;
};
}
2 changes: 1 addition & 1 deletion pkgs/tools/filesystems/fuse-overlayfs/default.nix
Original file line number Diff line number Diff line change
@@ -19,7 +19,7 @@ stdenv.mkDerivation rec {
description = "FUSE implementation for overlayfs";
longDescription = "An implementation of overlay+shiftfs in FUSE for rootless containers.";
license = licenses.gpl3;
maintainers = with maintainers; [ ma9e ];
maintainers = with maintainers; [ ma9e ] ++ teams.podman.members;
platforms = platforms.unix;
inherit (src.meta) homepage;
};
2 changes: 1 addition & 1 deletion pkgs/tools/networking/slirp4netns/default.nix
Original file line number Diff line number Diff line change
@@ -29,7 +29,7 @@ stdenv.mkDerivation rec {
homepage = "https://github.com/rootless-containers/slirp4netns";
description = "User-mode networking for unprivileged network namespaces";
license = licenses.gpl2;
maintainers = with maintainers; [ orivej saschagrunert ];
maintainers = with maintainers; [ orivej ] ++ teams.podman.members;
platforms = platforms.linux;
};
}