summary refs log tree commit diff
path: root/pkgs/tools/X11/xrestop/default.nix
blob: 5158963258c206f2f8b0bd0e76568608f1a4bdb1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ stdenv, fetchurl, xlibs, 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 xlibs.libX11 xlibs.libXres xlibs.libXext ncurses ];
}