depot/pkgs/applications/misc/xscope/default.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

24 lines
656 B
Nix

{ lib, stdenv, fetchurl, pkg-config, libXt }:
stdenv.mkDerivation rec {
pname = "xscope";
version = "1.4.1";
src = fetchurl {
url = "mirror://xorg/individual/app/${pname}-${version}.tar.bz2";
sha256 = "08zl3zghvbcqy0r5dn54dim84lp52s0ygrr87jr3a942a6ypz01k";
};
nativeBuildInputs = [ pkg-config ];
buildInputs = [ libXt ];
meta = with lib; {
description = "program to monitor X11/Client conversations";
homepage = "https://cgit.freedesktop.org/xorg/app/xscope/";
license = with licenses; [ mit ];
maintainers = with maintainers; [ crertel ];
platforms = with platforms; unix;
mainProgram = "xscope";
};
}