xscope: 1.4.1 -> 1.4.5 (#414354)

This commit is contained in:
Peder Bergebakken Sundt
2025-06-12 15:11:40 +02:00
committed by GitHub

View File

@@ -1,29 +1,42 @@
{
lib,
stdenv,
fetchurl,
fetchFromGitLab,
pkg-config,
libXt,
autoreconfHook,
xorg-autoconf,
xorg,
}:
stdenv.mkDerivation rec {
stdenv.mkDerivation (finalAttrs: {
pname = "xscope";
version = "1.4.1";
version = "1.4.5";
src = fetchurl {
url = "mirror://xorg/individual/app/${pname}-${version}.tar.bz2";
sha256 = "08zl3zghvbcqy0r5dn54dim84lp52s0ygrr87jr3a942a6ypz01k";
src = fetchFromGitLab {
domain = "gitlab.freedesktop.org";
owner = "xorg";
repo = "app/xscope";
tag = "xscope-${finalAttrs.version}";
hash = "sha256-9ZmmV41PKv+WFL9I4D9NTfNVTsazCijZMMmDFSvXMlg=";
};
nativeBuildInputs = [ pkg-config ];
buildInputs = [ libXt ];
nativeBuildInputs = [
autoreconfHook
pkg-config
xorg-autoconf
];
meta = with lib; {
buildInputs = [
xorg.libXt
xorg.xtrans
];
meta = {
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;
license = with lib.licenses; [ mit ];
maintainers = with lib.maintainers; [ crertel ];
platforms = lib.platforms.unix;
mainProgram = "xscope";
};
}
})