2015-09-15 10:26:18 +01:00
|
|
|
{ stdenv, fetchurl, xorg, pkgconfig, ncurses }:
|
2019-08-13 22:52:01 +01:00
|
|
|
stdenv.mkDerivation {
|
2013-08-06 01:56:21 +01:00
|
|
|
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "xrestop";
|
2013-08-06 01:56:21 +01:00
|
|
|
version = "0.4";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2020-04-01 02:11:51 +01:00
|
|
|
url = "mirror://gentoo/distfiles/xrestop-0.4.tar.gz";
|
2013-08-06 01:56:21 +01:00
|
|
|
sha256 = "0mz27jpij8am1s32i63mdm58znfijcpfhdqq1npbmvgclyagrhk7";
|
|
|
|
};
|
|
|
|
|
2017-09-05 22:26:13 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ xorg.libX11 xorg.libXres xorg.libXext ncurses ];
|
2016-08-02 17:06:29 +01:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2018-07-22 16:01:46 +01:00
|
|
|
license = stdenv.lib.licenses.gpl2;
|
2016-08-02 17:06:29 +01:00
|
|
|
};
|
2013-08-06 01:56:21 +01:00
|
|
|
}
|