about summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorrnhmjoj <rnhmjoj@inventati.org>2019-09-28 19:59:00 +0200
committerLassulus <github@lassul.us>2019-10-23 15:36:44 +0200
commitdc00cee52605712a785e040293994a3f7b5974af (patch)
treec9c98679d5000bcd25817c0c13cec3b45e48e8a2 /pkgs/tools
parent3db4109501179d4fea0a36130115c6f8cd28b5b3 (diff)
x11spice: init at 2019-08-20
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/X11/x11spice/default.nix36
1 files changed, 36 insertions, 0 deletions
diff --git a/pkgs/tools/X11/x11spice/default.nix b/pkgs/tools/X11/x11spice/default.nix
new file mode 100644
index 0000000000000..513149049faf3
--- /dev/null
+++ b/pkgs/tools/X11/x11spice/default.nix
@@ -0,0 +1,36 @@
+{ stdenv, fetchFromGitLab, autoreconfHook, pkgconfig
+, xorg, gtk2, spice, spice-protocol
+}:
+
+stdenv.mkDerivation rec {
+  pname = "x11spice";
+  version = "2019-08-20";
+
+  src = fetchFromGitLab {
+    domain = "gitlab.freedesktop.org";
+    owner = "spice";
+    repo = "x11spice";
+    rev = "51d2a8ba3813469264959bb3ba2fc6fe08097be6";
+    sha256 = "0va5ix14vnqch59gq8wvrhw6q0w0n27sy70xx5kvfj2cl0h1xpg8";
+  };
+
+  nativeBuildInputs = [ autoreconfHook pkgconfig ];
+
+  buildInputs = [
+    xorg.libxcb xorg.xcbutil xorg.utilmacros
+    gtk2 spice spice-protocol
+  ];
+
+  NIX_LDFLAGS = "-lpthread";
+
+  meta = with stdenv.lib; {
+    description = ''
+      x11spice will enable a running X11 desktop to be available
+      via a Spice server
+    '';
+    homepage = https://gitlab.freedesktop.org/spice/x11spice;
+    platforms = platforms.linux;
+    license = licenses.gpl3;
+    maintainers = with maintainers; [ rnhmjoj ];
+  };
+}