remotebox: drop (#443574)
This commit is contained in:
@@ -1,56 +0,0 @@
|
||||
{
|
||||
lib,
|
||||
stdenv,
|
||||
fetchurl,
|
||||
makeWrapper,
|
||||
perl,
|
||||
perlPackages,
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "remotebox";
|
||||
version = "3.6";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://remotebox.knobgoblin.org.uk/downloads/RemoteBox-${version}.tar.bz2";
|
||||
sha256 = "sha256-e9qDNKdfLOOlml/8BHuSBIGNbh2eO5H4OmBuANtPXvs=";
|
||||
};
|
||||
|
||||
buildInputs = with perlPackages; [
|
||||
perl
|
||||
Glib
|
||||
Gtk2
|
||||
Pango
|
||||
SOAPLite
|
||||
];
|
||||
nativeBuildInputs = [ makeWrapper ];
|
||||
|
||||
installPhase = ''
|
||||
mkdir -pv $out/bin
|
||||
|
||||
substituteInPlace remotebox --replace "\$Bin/" "\$Bin/../"
|
||||
install -v -t $out/bin remotebox
|
||||
wrapProgram $out/bin/remotebox --prefix PERL5LIB : $PERL5LIB
|
||||
|
||||
cp -av docs/ share/ $out
|
||||
|
||||
mkdir -pv $out/share/applications
|
||||
cp -pv packagers-readme/*.desktop $out/share/applications
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "VirtualBox client with remote management";
|
||||
homepage = "http://remotebox.knobgoblin.org.uk/";
|
||||
license = licenses.gpl2Plus;
|
||||
longDescription = ''
|
||||
VirtualBox is traditionally considered to be a virtualization solution
|
||||
aimed at the desktop. While it is certainly possible to install
|
||||
VirtualBox on a server, it offers few remote management features beyond
|
||||
using the vboxmanage command line.
|
||||
RemoteBox aims to fill this gap by providing a graphical VirtualBox
|
||||
client which is able to manage a VirtualBox server installation.
|
||||
'';
|
||||
platforms = platforms.all;
|
||||
mainProgram = "remotebox";
|
||||
};
|
||||
}
|
||||
@@ -2166,6 +2166,7 @@ mapAliases {
|
||||
redpanda = redpanda-client; # Added 2023-10-14
|
||||
redpanda-server = throw "'redpanda-server' has been removed because it was broken for a long time"; # Added 2024-06-10
|
||||
relibc = throw "relibc has been removed due to lack of maintenance"; # Added 2024-09-02
|
||||
remotebox = throw "remotebox has been removed because it was unmaintained and broken for a long time"; # Added 2025-09-11
|
||||
replay-sorcery = throw "replay-sorcery has been removed as it is unmaintained upstream. Consider using gpu-screen-recorder or obs-studio instead."; # Added 2024-07-13
|
||||
restinio_0_6 = throw "restinio_0_6 has been removed from nixpkgs as it's not needed by downstream packages"; # Added 2024-07-04
|
||||
retroarchBare = retroarch-bare; # Added 2024-11-23
|
||||
|
||||
Reference in New Issue
Block a user