1 { lib, stdenv, fetchurl, pkg-config, libXt }:
3 stdenv.mkDerivation rec {
8 url = "mirror://xorg/individual/app/${pname}-${version}.tar.bz2";
9 sha256 = "08zl3zghvbcqy0r5dn54dim84lp52s0ygrr87jr3a942a6ypz01k";
12 nativeBuildInputs = [ pkg-config ];
13 buildInputs = [ libXt ];
16 description = "program to monitor X11/Client conversations";
17 homepage = "https://cgit.freedesktop.org/xorg/app/xscope/";
18 license = with licenses; [ mit ];
19 maintainers = with maintainers; [ ];
20 platforms = with platforms; unix;