nixpkgs/pkgs/tools/X11/xrestop/default.nix
Vladimír Čunát 88c9f8b574 xlibs: replace occurrences by xorg
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.
2015-09-15 12:54:34 +02:00

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 ];
}