Merge pull request #61138 from rnhmjoj/collide

Avoid collisions between essential packages
wip/yesman
Graham Christensen 5 years ago committed by GitHub
commit 52ce589968
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      pkgs/os-specific/linux/procps-ng/default.nix
  2. 1
      pkgs/os-specific/linux/systemd/default.nix

@ -46,7 +46,7 @@ stdenv.mkDerivation rec {
meta = {
homepage = https://gitlab.com/procps-ng/procps;
description = "Utilities that give information about processes using the /proc filesystem";
priority = 10; # less than coreutils, which also provides "kill" and "uptime"
priority = 11; # less than coreutils, which also provides "kill" and "uptime"
license = lib.licenses.gpl2;
platforms = lib.platforms.unix;
maintainers = [ lib.maintainers.typetetris ];

@ -220,6 +220,7 @@ in stdenv.mkDerivation rec {
description = "A system and service manager for Linux";
license = licenses.lgpl21Plus;
platforms = platforms.linux;
priority = 10;
maintainers = [ maintainers.eelco ];
};
}

Loading…
Cancel
Save