summary refs log tree commit diff
path: root/pkgs/tools/X11
diff options
context:
space:
mode:
authorWill Dietz <w@wdtz.org>2019-03-17 23:15:55 -0500
committerWill Dietz <w@wdtz.org>2019-03-19 00:09:10 -0500
commitc388e8c986ae6717b89baf9603f3b816a725708e (patch)
tree25d4ed144a4bd0f9f8bb91555ea5d7f543a1e0fa /pkgs/tools/X11
parente6ccb67e23bce78e152ddcd9a85b6a44651e276f (diff)
downloadnixpkgs-c388e8c986ae6717b89baf9603f3b816a725708e.tar
nixpkgs-c388e8c986ae6717b89baf9603f3b816a725708e.tar.gz
nixpkgs-c388e8c986ae6717b89baf9603f3b816a725708e.tar.bz2
nixpkgs-c388e8c986ae6717b89baf9603f3b816a725708e.tar.lz
nixpkgs-c388e8c986ae6717b89baf9603f3b816a725708e.tar.xz
nixpkgs-c388e8c986ae6717b89baf9603f3b816a725708e.tar.zst
nixpkgs-c388e8c986ae6717b89baf9603f3b816a725708e.zip
xtruss: init at 20181001-82973f5
Diffstat (limited to 'pkgs/tools/X11')
-rw-r--r--pkgs/tools/X11/xtruss/default.nix18
1 files changed, 18 insertions, 0 deletions
diff --git a/pkgs/tools/X11/xtruss/default.nix b/pkgs/tools/X11/xtruss/default.nix
new file mode 100644
index 00000000000..043514ebb43
--- /dev/null
+++ b/pkgs/tools/X11/xtruss/default.nix
@@ -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 ];
+  };
+}