1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-25 15:11:35 +00:00
nixpkgs/pkgs/tools/X11/xrestop/default.nix

20 lines
470 B
Nix
Raw Normal View History

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