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
511 B
Nix
Raw Normal View History

{stdenv, fetchurl, ncurses}:
assert stdenv.isLinux;
stdenv.mkDerivation rec {
2013-12-15 23:01:08 +00:00
name = "psmisc-22.21";
src = fetchurl {
url = "mirror://sourceforge/psmisc/${name}.tar.gz";
2013-12-15 23:01:08 +00:00
sha256 = "1p13s2323mi2868y4fzy3q2kkmv4fn1ggabqnjf202x4030vjj1q";
};
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;
};
}