33668b6edd
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
.
20 lines
530 B
Nix
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;
|
|
};
|
|
}
|