nixpkgs/pkgs/tools/X11/xrestop/default.nix

20 lines
463 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, xorg, pkg-config, ncurses }:
2019-08-13 21:52:01 +00:00
stdenv.mkDerivation {
2013-08-06 00:56:21 +00:00
pname = "xrestop";
2013-08-06 00:56:21 +00:00
version = "0.4";
src = fetchurl {
url = "mirror://gentoo/distfiles/xrestop-0.4.tar.gz";
2013-08-06 00:56:21 +00:00
sha256 = "0mz27jpij8am1s32i63mdm58znfijcpfhdqq1npbmvgclyagrhk7";
};
nativeBuildInputs = [ pkg-config ];
buildInputs = [ xorg.libX11 xorg.libXres xorg.libXext ncurses ];
meta = {
2021-01-15 09:19:50 +00:00
platforms = lib.platforms.unix;
license = lib.licenses.gpl2;
};
2013-08-06 00:56:21 +00:00
}