summaryrefslogtreecommitdiffstats
path: root/pkgs/tools/X11/xtrace
diff options
context:
space:
mode:
authorLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2009-12-17 11:58:05 +0000
committerLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2009-12-17 11:58:05 +0000
commitd1f8da3ae771051cea04c485447ce5514ed23bca (patch)
treeb6a68f460f1b156d17e0a36eb4bb6cfdd079aafe /pkgs/tools/X11/xtrace
parent4174b1a061fe0f276908fd6f54860a60c5c97530 (diff)
Adding xtrace (not that of glibc, but a X protocol tracer)
svn path=/nixpkgs/trunk/; revision=19013
Diffstat (limited to 'pkgs/tools/X11/xtrace')
-rw-r--r--pkgs/tools/X11/xtrace/default.nix18
1 files changed, 18 insertions, 0 deletions
diff --git a/pkgs/tools/X11/xtrace/default.nix b/pkgs/tools/X11/xtrace/default.nix
new file mode 100644
index 000000000000..ad99c320dbaf
--- /dev/null
+++ b/pkgs/tools/X11/xtrace/default.nix
@@ -0,0 +1,18 @@
+{stdenv, fetchurl, libX11}:
+
+stdenv.mkDerivation {
+ name = "xtrace-1.0.1";
+ src = fetchurl {
+ url = "https://alioth.debian.org/frs/download.php/3149/xtrace_1.0.1.orig.tar.gz";
+ sha256 = "042rifm93mws7xbw86z0m1rmdijprlkijsi2882as1yf6gdbdqbm";
+ };
+ buildInputs = [libX11];
+
+ meta = {
+ homepage = http://xtrace.alioth.debian.org/;
+ description = "Trace X protocol connections";
+ license = "free";
+ maintainers = with stdenv.lib.maintainers; [viric];
+ platforms = with stdenv.lib.platforms; linux;
+ };
+}