88c9f8b574
This seems to have been confusing people, using both xlibs and xorg, etc. - Avoided renaming local (and different) xlibs binding in gcc*. - Fixed cases where both xorg and xlibs were used. Hopefully everything still works as before.
14 lines
355 B
Nix
14 lines
355 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 ];
|
|
}
|