arc-browser: drop

This commit is contained in:
Peder Bergebakken Sundt
2025-09-03 09:32:44 +02:00
parent 9040d4ab9d
commit 9b485a00bc
2 changed files with 1 additions and 66 deletions
-66
View File
@@ -1,66 +0,0 @@
{
lib,
stdenvNoCC,
fetchurl,
undmg,
writeShellApplication,
curl,
common-updater-scripts,
xmlstarlet,
}:
stdenvNoCC.mkDerivation (finalAttrs: {
pname = "arc-browser";
version = "1.109.0-67185";
src = fetchurl {
url = "https://releases.arc.net/release/Arc-${finalAttrs.version}.dmg";
hash = "sha256-zVErRSKMd5xhIB5fyawBNEatenHnm+q7VLAE78PLkmY=";
};
nativeBuildInputs = [ undmg ];
sourceRoot = "Arc.app";
installPhase = ''
runHook preInstall
mkdir -p "$out/Applications/Arc.app"
cp -R . "$out/Applications/Arc.app"
runHook postInstall
'';
dontFixup = true;
passthru.updateScript = lib.getExe (writeShellApplication {
name = "arc-browser-update-script";
runtimeInputs = [
curl
common-updater-scripts
xmlstarlet
];
text = ''
latest_version_string="$(curl -s "https://releases.arc.net/updates.xml" | xmlstarlet sel -N sparkle="http://www.andymatuschak.org/xml-namespaces/sparkle" -t -v "//item[1]/sparkle:shortVersionString" -n)"
version_part="''${latest_version_string%% (*}"
build_part="''${latest_version_string##*\(}"
build_part="''${build_part%\)*}"
version="''${version_part}-''${build_part}"
update-source-version arc-browser "$version"
'';
});
meta = {
description = "Arc from The Browser Company";
homepage = "https://arc.net/";
license = lib.licenses.unfree;
maintainers = with lib.maintainers; [ ];
knownVulnerabilities = [ "unmaintained" ];
platforms = [
"aarch64-darwin"
"x86_64-darwin"
];
sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
};
})
+1
View File
@@ -461,6 +461,7 @@ mapAliases {
appthreat-depscan = dep-scan; # Added 2024-04-10
arangodb = throw "arangodb has been removed, as it was unmaintained and the packaged version does not build with supported GCC versions"; # Added 2025-08-12
arb = throw "'arb' has been removed as it has been merged into 'flint3'"; # Added 2025-03-28
arc-browser = throw "arc-browser was removed due to being unmaintained"; # Added 2025-09-03
arcanist = throw "arcanist was removed as phabricator is not supported and does not accept fixes"; # Added 2024-06-07
archipelago-minecraft = throw "archipelago-minecraft has been removed, as upstream no longer ships minecraft as a default APWorld."; # Added 2025-07-15
archivebox = throw "archivebox has been removed, since the packaged version was stuck on django 3."; # Added 2025-08-01