summary refs log tree commit diff
path: root/pkgs/applications/misc/xscope
diff options
context:
space:
mode:
authorWill Dietz <w@wdtz.org>2018-07-12 16:22:43 -0500
committerWill Dietz <w@wdtz.org>2018-07-12 16:22:43 -0500
commit81c7e8e0a5f5db7c818a221d412d050405feba8d (patch)
tree8c2b97e1c0d8ea3d85b77fbc25e0a69c08ac2a19 /pkgs/applications/misc/xscope
parentd37c23c699f10b9d9bb17a0e8da6f1a76cdd4ec8 (diff)
downloadnixlib-81c7e8e0a5f5db7c818a221d412d050405feba8d.tar
nixlib-81c7e8e0a5f5db7c818a221d412d050405feba8d.tar.gz
nixlib-81c7e8e0a5f5db7c818a221d412d050405feba8d.tar.bz2
nixlib-81c7e8e0a5f5db7c818a221d412d050405feba8d.tar.lz
nixlib-81c7e8e0a5f5db7c818a221d412d050405feba8d.tar.xz
nixlib-81c7e8e0a5f5db7c818a221d412d050405feba8d.tar.zst
nixlib-81c7e8e0a5f5db7c818a221d412d050405feba8d.zip
xscope: init at 1.4.1
See the xscope README for more information:

https://cgit.freedesktop.org/xorg/app/xscope/tree/README
Diffstat (limited to 'pkgs/applications/misc/xscope')
-rw-r--r--pkgs/applications/misc/xscope/default.nix24
1 files changed, 24 insertions, 0 deletions
diff --git a/pkgs/applications/misc/xscope/default.nix b/pkgs/applications/misc/xscope/default.nix
new file mode 100644
index 000000000000..28ce4a0d500d
--- /dev/null
+++ b/pkgs/applications/misc/xscope/default.nix
@@ -0,0 +1,24 @@
+{ stdenv, fetchurl, pkgconfig, libXt }:
+
+stdenv.mkDerivation rec {
+  name = "${pname}-${version}";
+  pname = "xscope";
+  version = "1.4.1";
+
+  src = fetchurl {
+    url = "mirror://xorg/individual/app/${name}.tar.bz2";
+    sha256 = "08zl3zghvbcqy0r5dn54dim84lp52s0ygrr87jr3a942a6ypz01k";
+  };
+
+  nativeBuildInputs = [ pkgconfig ];
+  buildInputs = [ libXt ];
+
+  meta = with stdenv.lib; {
+    description = "program to monitor X11/Client conversations";
+    homepage = https://cgit.freedesktop.org/xorg/app/xscope/;
+    license = with licenses; [ mit ];
+    maintainers = with maintainers; [ ];
+    platforms = with platforms; unix;
+  };
+}
+