cables: init at 0.3.2 (#345452)

This commit is contained in:
h7x4 2024-10-05 12:33:02 +02:00 committed by GitHub
commit 9a885ce087
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 51 additions and 0 deletions

View File

@ -18498,6 +18498,11 @@
githubId = 56157634;
name = "Ruben Hönle";
};
rubikcubed = {
github = "rubikcubed";
githubId = 91467402;
name = "rubikcubed";
};
ruby0b = {
github = "ruby0b";
githubId = 106119328;

View File

@ -0,0 +1,46 @@
{
lib,
fetchurl,
appimageTools,
stdenv,
}:
let
pname = "cables";
version = "0.3.2";
name = "${pname}-${version}";
src = fetchurl {
url = "https://github.com/cables-gl/cables_electron/releases/download/v${version}/cables-${version}-linux-x64.AppImage";
sha256 = "sha256-D5Bgg5D03FPQF2HKow4yehcqToo4dpPudBg0W4UnqFs=";
};
appimageContents = appimageTools.extract {
inherit pname version src;
postExtract = ''
substituteInPlace $out/${name}.desktop --replace 'Exec=AppRun' 'Exec=cables'
'';
};
in
appimageTools.wrapType2 {
inherit name src;
extraInstallCommands = ''
mv $out/bin/${name} $out/bin/cables
install -m 444 -D ${appimageContents}/${name}.desktop $out/share/applications/cables.desktop
install -m 444 -D ${appimageContents}/${name}.png $out/share/icons/hicolor/512x512/apps/cables.png
'';
meta = with lib; {
description = "Standalone version of cables, a tool for creating beautiful interactive content.";
homepage = "https://cables.gl";
changelog = "https://cables.gl/changelog";
license = licenses.mit;
maintainers = with maintainers; [ rubikcubed ];
platforms = with platforms; linux ++ darwin ++ windows;
broken = !(stdenv.hostPlatform.isLinux && stdenv.hostPlatform.isx86_64);
mainProgram = "cables";
};
}