Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
634 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
stdenv,
fetchurl,
cmake,
halibut,
}:
stdenv.mkDerivation rec {
pname = "xtruss";
version = "20211025.c25bf48";
src = fetchurl {
url = "https://www.chiark.greenend.org.uk/~sgtatham/xtruss/${pname}-${version}.tar.gz";
sha256 = "sha256-ikuKHtXEn2UVLE62l7qD9qc9ZUk6jiAqj5ru36vgdHk=";
};
nativeBuildInputs = [
cmake
halibut
];
meta = with lib; {
description = "Easy-to-use X protocol tracing program";
homepage = "https://www.chiark.greenend.org.uk/~sgtatham/xtruss";
license = licenses.mit;
maintainers = with maintainers; [ dtzWill ];
mainProgram = "xtruss";
};
}