procps-ng: allow cygwin

This commit is contained in:
David McFarland 2017-05-23 10:36:27 -03:00
parent f3c039ff8d
commit a08024bcb0

View file

@ -27,6 +27,6 @@ stdenv.mkDerivation rec {
description = "Utilities that give information about processes using the /proc filesystem";
priority = 10; # less than coreutils, which also provides "kill" and "uptime"
license = lib.licenses.gpl2;
platforms = lib.platforms.linux;
platforms = lib.platforms.linux ++ lib.platforms.cygwin;
};
}