Merge pull request #57892 from dtzWill/feature/xtruss

xtruss: init at 20181001-82973f5

authored by Will Dietz and committed by GitHub 1cfee054 b427fc9a

+20
+18
pkgs/tools/X11/xtruss/default.nix
··· 1 + { stdenv, fetchurl }: 2 + 3 + stdenv.mkDerivation rec { 4 + pname = "xtruss"; 5 + version = "20181001.82973f5"; 6 + 7 + src = fetchurl { 8 + url = "https://www.chiark.greenend.org.uk/~sgtatham/xtruss/${pname}-${version}.tar.gz"; 9 + sha256 = "1mm8k92zc318jk71wlf2r4rb723nd9lalhjl0pf48raiajb5ifgd"; 10 + }; 11 + 12 + meta = with stdenv.lib; { 13 + description = "easy-to-use X protocol tracing program"; 14 + homepage = https://www.chiark.greenend.org.uk/~sgtatham/xtruss; 15 + license = licenses.mit; 16 + maintainers = with maintainers; [ dtzWill ]; 17 + }; 18 + }
+2
pkgs/top-level/all-packages.nix
··· 20515 20515 20516 20516 xtrace = callPackage ../tools/X11/xtrace { }; 20517 20517 20518 + xtruss = callPackage ../tools/X11/xtruss { }; 20519 + 20518 20520 xmacro = callPackage ../tools/X11/xmacro { }; 20519 20521 20520 20522 xmlcopyeditor = callPackage ../applications/editors/xmlcopyeditor { };