mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 16:45:49 +01:00
b83609add3
No longer need fuser patch, fixes musl compat.
20 lines
510 B
Nix
20 lines
510 B
Nix
{stdenv, fetchurl, ncurses}:
|
|
|
|
assert stdenv.isLinux;
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "psmisc-23.0";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/psmisc/${name}.tar.xz";
|
|
sha256 = "0k7hafh9388s3hh9j943jy1qk9g1c43j02nyk0xis0ngbs632lvm";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|