nixpkgs/pkgs/os-specific/linux/psmisc/default.nix
R. RyanTM b4411ab479 psmisc: 23.1 -> 23.2 (#45169)
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/psmisc/versions.
2018-08-19 22:49:59 +02:00

20 lines
530 B
Nix

{stdenv, fetchurl, ncurses}:
stdenv.mkDerivation rec {
name = "psmisc-23.2";
src = fetchurl {
url = "mirror://sourceforge/psmisc/${name}.tar.xz";
sha256 = "0s1kjhrik0wzqbm7hv4gkhywhjrwhp9ajw0ad05fwharikk6ah49";
};
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;
};
}