Skip to content

Commit

Permalink
x11spice: init at 2019-08-20
Browse files Browse the repository at this point in the history
  • Loading branch information
rnhmjoj authored and Lassulus committed Oct 23, 2019
1 parent 3db4109 commit dc00cee
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 0 deletions.
36 changes: 36 additions & 0 deletions 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 ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Expand Up @@ -21653,6 +21653,8 @@ in

x11vnc = callPackage ../tools/X11/x11vnc { };

x11spice = callPackage ../tools/X11/x11spice { };

x2goclient = libsForQt5.callPackage ../applications/networking/remote/x2goclient { };

x2goserver = callPackage ../applications/networking/remote/x2goserver { };
Expand Down

0 comments on commit dc00cee

Please sign in to comment.