flutter: package-overrides: flutter_secure_storage_linux: init

This commit is contained in:
hacker1024 2023-04-17 03:06:23 +10:00
parent 27ae052ce0
commit 26e9b52d94
2 changed files with 18 additions and 0 deletions

View file

@ -1,4 +1,5 @@
{ callPackage }:
{
flutter_secure_storage_linux = callPackage ./flutter-secure-storage-linux { };
}

View file

@ -0,0 +1,17 @@
{ lib
, pkg-config
, libsecret
, jsoncpp
}:
{ ... }:
{ nativeBuildInputs ? [ ]
, buildInputs ? [ ]
, ...
}:
{
nativeBuildInputs = [ pkg-config ] ++ nativeBuildInputs;
buildInputs = [ libsecret jsoncpp ] ++ buildInputs;
}