1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/os-specific/linux/psmisc/default.nix

21 lines
510 B
Nix
Raw Normal View History

{stdenv, fetchurl, ncurses}:
assert stdenv.isLinux;
stdenv.mkDerivation rec {
2017-06-30 13:26:20 +01:00
name = "psmisc-23.1";
src = fetchurl {
url = "mirror://sourceforge/psmisc/${name}.tar.xz";
2017-06-30 13:26:20 +01:00
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;
};
}