Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 3db410950117
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: dc00cee52605
Choose a head ref
  • 1 commit
  • 2 files changed
  • 1 contributor

Commits on Oct 23, 2019

  1. x11spice: init at 2019-08-20

    rnhmjoj authored and Lassulus committed Oct 23, 2019
    Copy the full SHA
    dc00cee View commit details
Showing with 38 additions and 0 deletions.
  1. +36 −0 pkgs/tools/X11/x11spice/default.nix
  2. +2 −0 pkgs/top-level/all-packages.nix
36 changes: 36 additions & 0 deletions pkgs/tools/X11/x11spice/default.nix
Original file line number Diff line number Diff line change
@@ -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
Original file line number Diff line number Diff line change
@@ -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 { };