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

20 lines
482 B
Nix
Raw Normal View History

{ stdenv, fetchurl, xorg, pkgconfig, ncurses }:
2013-08-06 00:56:21 +00:00
stdenv.mkDerivation rec {
name = "xrestop-${version}";
version = "0.4";
src = fetchurl {
url = mirror://gentoo/distfiles/xrestop-0.4.tar.gz;
sha256 = "0mz27jpij8am1s32i63mdm58znfijcpfhdqq1npbmvgclyagrhk7";
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ xorg.libX11 xorg.libXres xorg.libXext ncurses ];
meta = {
platforms = stdenv.lib.platforms.unix;
2018-07-22 15:01:46 +00:00
license = stdenv.lib.licenses.gpl2;
};
2013-08-06 00:56:21 +00:00
}