summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/X11/xauth/default.nix10
1 files changed, 10 insertions, 0 deletions
diff --git a/pkgs/tools/X11/xauth/default.nix b/pkgs/tools/X11/xauth/default.nix
new file mode 100644
index 00000000000..82cb4e29f7c
--- /dev/null
+++ b/pkgs/tools/X11/xauth/default.nix
@@ -0,0 +1,10 @@
+{stdenv, fetchurl, pkgconfig, libX11, libXau, libXext, libXmu}:
+
+stdenv.mkDerivation {
+  name = "xauth-7.0";
+  src = fetchurl {
+    url = http://losser.st-lab.cs.uu.nl/~eelco/dist/xauth-7.0.tar.bz2;
+    md5 = "d597005016baa8af81a5b0e38951d563";
+  };
+  buildInputs = [pkgconfig libX11 libXau libXext libXmu];
+}