macos-instantview: init

macos-instantview: update sourceProvenance

description, versioning compliance

self -> finalAttrs
This commit is contained in:
aspauldingcode 2025-03-08 15:33:50 -07:00
parent 5d3dee1b6d
commit 66231b5108

View file

@ -0,0 +1,44 @@
{
stdenvNoCC,
fetchurl,
lib,
_7zz,
}:
stdenvNoCC.mkDerivation (finalAttrs: {
pname = "instantview";
version = "3.22R0002";
src = fetchurl {
url = "https://www.siliconmotion.com/downloads/macOS_InstantView_V${finalAttrs.version}.dmg";
hash = "sha256-PdgX9zCrVYtNbuOCYKVo9cegCG/VY7QXetivVsUltbg=";
};
nativeBuildInputs = [ _7zz ];
dontUnpack = true;
dontConfigure = true;
dontBuild = true;
installPhase = ''
runHook preInstall
mkdir -p "$out/Applications"
# Extract the DMG using 7zip
7zz x "$src" -oextracted -y
# Move the extracted contents to $out
cp -r extracted/* "$out/Applications/"
runHook postInstall
'';
meta = {
platforms = lib.platforms.darwin;
description = "USB Docking Station plugin-and-display support with SM76x driver";
homepage = "https://www.siliconmotion.com/events/instantview/";
license = lib.licenses.unfree;
sourceProvenance = [ lib.sourceTypes.binaryNativeCode ];
maintainers = with lib.maintainers; [ aspauldingcode ];
};
})