Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / applications / misc / xscope / default.nix
blobba798a861a8d1eb1a138492be5451ca2b64d0b86
1 { lib, stdenv, fetchurl, pkg-config, libXt }:
3 stdenv.mkDerivation rec {
4   pname = "xscope";
5   version = "1.4.1";
7   src = fetchurl {
8     url = "mirror://xorg/individual/app/${pname}-${version}.tar.bz2";
9     sha256 = "08zl3zghvbcqy0r5dn54dim84lp52s0ygrr87jr3a942a6ypz01k";
10   };
12   nativeBuildInputs = [ pkg-config ];
13   buildInputs = [ libXt ];
15   meta = with lib; {
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;
21   };