Merge pull request #57892 from dtzWill/feature/xtruss

xtruss: init at 20181001-82973f5
This commit is contained in:
Will Dietz 2019-03-24 21:45:22 -05:00 committed by GitHub
commit 1cfee05450
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 20 additions and 0 deletions

View file

@ -0,0 +1,18 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
pname = "xtruss";
version = "20181001.82973f5";
src = fetchurl {
url = "https://www.chiark.greenend.org.uk/~sgtatham/xtruss/${pname}-${version}.tar.gz";
sha256 = "1mm8k92zc318jk71wlf2r4rb723nd9lalhjl0pf48raiajb5ifgd";
};
meta = with stdenv.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 ];
};
}

View file

@ -20515,6 +20515,8 @@ in
xtrace = callPackage ../tools/X11/xtrace { };
xtruss = callPackage ../tools/X11/xtruss { };
xmacro = callPackage ../tools/X11/xmacro { };
xmlcopyeditor = callPackage ../applications/editors/xmlcopyeditor { };