2258b21e4b
Build-tested on x86_64 Linux and on Darwin.
17 lines
415 B
Nix
17 lines
415 B
Nix
{ stdenv, fetchurl, xorg, pkgconfig, ncurses }:
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "xrestop-${version}";
|
|
version = "0.4";
|
|
|
|
src = fetchurl {
|
|
url = mirror://gentoo/distfiles/xrestop-0.4.tar.gz;
|
|
sha256 = "0mz27jpij8am1s32i63mdm58znfijcpfhdqq1npbmvgclyagrhk7";
|
|
};
|
|
|
|
buildInputs = [ pkgconfig xorg.libX11 xorg.libXres xorg.libXext ncurses ];
|
|
|
|
meta = {
|
|
platforms = stdenv.lib.platforms.unix;
|
|
};
|
|
}
|