remotebox: 1.9 -> 2.0
Changes: - RemoteBox now requires VirtualBox 5.0.x - Added guest support for USB 3.0 - Added OS icons for Windows 10, OS/2 1.x, Yosemite, El Capitan - Added command line options for automatic login. See manual - Added option to set the virtual VGA card of a guest to either VirtualBox VGA or VMware SVGA-II - Allow snapshots to be taken while the guest is paused - Added support for adding USB storage controller to a guest - Added support for adding transient shared folders - Added support for setting IPv6 Port Forwarding rules on NAT networks - Added option to convert disk images to VDI when importing an appliance - Changed the way guest details are displayed and added an option to show extended (slower) or reduced (faster) guest details - Added support for selecting built-in presets for the RDP clients. These are currently FreeRDP (New Syntax), FreeRDP (Old Syntax), Rdesktop, Windows Remote Desktop Client - Added support for selecting the paravirtualization interface for a guest - Added keyboard toolbutton for quick access to common keyboard sequences. The full keyboard menu is still available - Fixed a problem with trailing slashes in a URL preventing the remote display to a guest from opening. - Fixed a problem with UTF8 strings affecting the listing of storage attached to controllers - Fixed an issue where stuck guests couldn't be stopped from the GUI - Various GUI tweaks
This commit is contained in:
parent
72fd2a609c
commit
3e79e3a264
|
@ -1,28 +1,32 @@
|
||||||
{ stdenv, fetchurl, perl, perlPackages }:
|
{ stdenv, fetchurl, makeWrapper, perl, perlPackages }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
let version = "2.0"; in
|
||||||
version = "1.9";
|
stdenv.mkDerivation {
|
||||||
name = "remotebox-${version}";
|
name = "remotebox-${version}";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "${meta.homepage}/downloads/RemoteBox-${version}.tar.bz2";
|
url = "http://remotebox.knobgoblin.org.uk/downloads/RemoteBox-${version}.tar.bz2";
|
||||||
sha256 = "0vsfz2qmha9nz60fyksgqqyrw4lz9z2d5isnwqc6afn8z3i1qmkp";
|
sha256 = "0c73i53wdjd2m2sdgq3r3xp30irxh5z5rak2rk79yb686s6bv759";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ perl perlPackages.Gtk2 perlPackages.SOAPLite ];
|
buildInputs = with perlPackages; [ perl Glib Gtk2 Pango SOAPLite ];
|
||||||
|
nativeBuildInputs = [ makeWrapper ];
|
||||||
|
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
mkdir -p $out/bin
|
mkdir -pv $out/bin
|
||||||
cp -a docs/ share/ $out
|
|
||||||
|
|
||||||
substituteInPlace remotebox --replace "\$Bin/" "\$Bin/../"
|
substituteInPlace remotebox --replace "\$Bin/" "\$Bin/../"
|
||||||
install -t $out/bin remotebox
|
install -v -t $out/bin remotebox
|
||||||
|
wrapProgram $out/bin/remotebox --prefix PERL5LIB : $PERL5LIB
|
||||||
|
|
||||||
mkdir -p $out/share/applications
|
cp -av docs/ share/ $out
|
||||||
cp -p packagers-readme/*.desktop $out/share/applications
|
|
||||||
|
mkdir -pv $out/share/applications
|
||||||
|
cp -pv packagers-readme/*.desktop $out/share/applications
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
|
inherit version;
|
||||||
description = "VirtualBox client with remote management";
|
description = "VirtualBox client with remote management";
|
||||||
homepage = http://remotebox.knobgoblin.org.uk/;
|
homepage = http://remotebox.knobgoblin.org.uk/;
|
||||||
license = licenses.gpl2Plus;
|
license = licenses.gpl2Plus;
|
||||||
|
@ -35,6 +39,6 @@ stdenv.mkDerivation rec {
|
||||||
client which is able to manage a VirtualBox server installation.
|
client which is able to manage a VirtualBox server installation.
|
||||||
'';
|
'';
|
||||||
maintainers = with maintainers; [ nckx ];
|
maintainers = with maintainers; [ nckx ];
|
||||||
platforms = with platforms; all;
|
platforms = platforms.all;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue