3
0
Fork 0
forked from mirrors/nixpkgs

x11spice: init at 2019-08-20

This commit is contained in:
rnhmjoj 2019-09-28 19:59:00 +02:00 committed by Lassulus
parent 3db4109501
commit dc00cee526
2 changed files with 38 additions and 0 deletions

View file

@ -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 ];
};
}

View file

@ -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 { };