Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
43 lines
834 B
Nix
43 lines
834 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
autoreconfHook,
|
|
fetchFromGitLab,
|
|
libX11,
|
|
xauth,
|
|
makeWrapper,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "xtrace";
|
|
version = "1.4.0";
|
|
|
|
src = fetchFromGitLab {
|
|
domain = "salsa.debian.org";
|
|
owner = "debian";
|
|
repo = "xtrace";
|
|
rev = "xtrace-${version}";
|
|
sha256 = "1yff6x847nksciail9jly41mv70sl8sadh0m5d847ypbjmxcwjpq";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
autoreconfHook
|
|
makeWrapper
|
|
];
|
|
buildInputs = [ libX11 ];
|
|
|
|
postInstall = ''
|
|
wrapProgram "$out/bin/xtrace" \
|
|
--prefix PATH ':' "${xauth}/bin"
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://salsa.debian.org/debian/xtrace";
|
|
description = "Tool to trace X11 protocol connections";
|
|
license = licenses.gpl2Only;
|
|
maintainers = [ ];
|
|
platforms = with platforms; linux;
|
|
mainProgram = "xtrace";
|
|
};
|
|
}
|