nixpkgs/pkgs/os-specific/linux/psmisc/default.nix
Will Dietz 33668b6edd Revert "psmisc: 23.1 -> 23.2 (#45169)" (#45918)
23.2 isn't an actual release yet
(for example, not listed here:
https://gitlab.com/psmisc/psmisc/tags )

and 23.2 apparently has caused problems elsewhere,
https://github.com/void-linux/void-packages/issues/2288

If this doesn't make branch-off might need to be picked over.

I have not experienced problems with this yet AFAIK.

This reverts commit b4411ab479.
2018-09-01 23:10:47 +02:00

20 lines
530 B
Nix

{stdenv, fetchurl, ncurses}:
stdenv.mkDerivation rec {
name = "psmisc-23.1";
src = fetchurl {
url = "mirror://sourceforge/psmisc/${name}.tar.xz";
sha256 = "0c5s94hqpwfmyswx2f96gifa6wdbpxxpkyxcrlzbxpvmrxsd911f";
};
buildInputs = [ncurses];
meta = {
homepage = http://psmisc.sourceforge.net/;
description = "A set of small useful utilities that use the proc filesystem (such as fuser, killall and pstree)";
platforms = stdenv.lib.platforms.linux;
license = stdenv.lib.licenses.gpl2Plus;
};
}