dart.fvp: drop

This commit is contained in:
qzylinra
2025-08-27 05:43:26 +08:00
parent cf20b51ab5
commit 4b4bc20c3a
2 changed files with 0 additions and 27 deletions
@@ -7,7 +7,6 @@
flutter_secure_storage_linux = callPackage ./flutter-secure-storage-linux { };
flutter_vodozemac = callPackage ./flutter_vodozemac { };
flutter_volume_controller = callPackage ./flutter_volume_controller { };
fvp = callPackage ./fvp { };
handy_window = callPackage ./handy-window { };
matrix = callPackage ./matrix { };
media_kit_libs_linux = callPackage ./media_kit_libs_linux { };
@@ -1,26 +0,0 @@
{
stdenv,
mdk-sdk,
}:
{ version, src, ... }:
stdenv.mkDerivation rec {
pname = "fvp";
inherit version src;
inherit (src) passthru;
postPatch = ''
sed -i 's|.*libc++.so.1.*|${mdk-sdk}/lib/libc++.so.1|' ./linux/CMakeLists.txt
substituteInPlace ./linux/CMakeLists.txt \
--replace-fail "fvp_setup_deps()" "include(${mdk-sdk}/lib/cmake/FindMDK.cmake)"
'';
installPhase = ''
runHook preInstall
cp -r . $out
runHook postInstall
'';
}