81 lines
2.1 KiB
Nix
81 lines
2.1 KiB
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
flutterPackages,
|
|
corrosion,
|
|
rustPlatform,
|
|
cargo,
|
|
rustc,
|
|
udev,
|
|
copyDesktopItems,
|
|
makeDesktopItem,
|
|
}:
|
|
flutterPackages.stable.buildFlutterApplication rec {
|
|
pname = "intiface-central";
|
|
version = "2.6.4";
|
|
src = fetchFromGitHub {
|
|
owner = "intiface";
|
|
repo = "intiface-central";
|
|
rev = "v${version}";
|
|
hash = "sha256-QBNEKhjBfKxArBykUq/fE4lftCYzGdAaWYD1F7rar5Y=";
|
|
};
|
|
patches = [
|
|
./corrosion.patch
|
|
];
|
|
|
|
pubspecLock = lib.importJSON ./pubspec.lock.json;
|
|
|
|
cargoDeps = rustPlatform.fetchCargoTarball {
|
|
name = "${pname}-${version}-cargo-deps";
|
|
inherit src;
|
|
sourceRoot = "${src.name}/intiface-engine-flutter-bridge";
|
|
hash = "sha256-S3Yy0IIMiRUUpFNlLvS1PGwpvxePMB1sO5M6mpm1OgY=";
|
|
};
|
|
cargoRoot = "intiface-engine-flutter-bridge";
|
|
|
|
preConfigure = ''
|
|
export CMAKE_PREFIX_PATH="${corrosion}:$CMAKE_PREFIX_PATH"
|
|
'';
|
|
|
|
nativeBuildInputs = [
|
|
corrosion
|
|
rustPlatform.cargoSetupHook
|
|
cargo
|
|
rustc
|
|
copyDesktopItems
|
|
];
|
|
|
|
buildInputs = [
|
|
udev
|
|
];
|
|
|
|
# without this, only the splash screen will be shown and the logs will contain the
|
|
# line `Failed to load dynamic library 'lib/libintiface_engine_flutter_bridge.so'`
|
|
# Environmental variables don't quite eval outside of hooks so use pname and
|
|
# version directly.
|
|
extraWrapProgramArgs = "--chdir $out/app/${pname}";
|
|
|
|
postInstall = ''
|
|
mkdir -p $out/share/pixmaps
|
|
cp $out/app/$pname/data/flutter_assets/assets/icons/intiface_central_icon.png $out/share/pixmaps/intiface-central.png
|
|
'';
|
|
|
|
desktopItems = [
|
|
(makeDesktopItem {
|
|
name = "intiface-central";
|
|
exec = "intiface_central";
|
|
icon = "intiface-central";
|
|
comment = "Intiface Central (Buttplug Frontend) Application for Desktop";
|
|
desktopName = "Intiface Central";
|
|
})
|
|
];
|
|
|
|
meta = with lib; {
|
|
mainProgram = "intiface_central";
|
|
description = "Intiface Central (Buttplug Frontend) Application for Desktop";
|
|
homepage = "https://intiface.com/";
|
|
license = licenses.gpl3Only;
|
|
maintainers = with maintainers; [ _999eagle ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|