lomiri.lomiri-system-settings-security-privacy: init at 1.0.2
This commit is contained in:
parent
53bb990cd0
commit
429be39416
2 changed files with 90 additions and 0 deletions
|
@ -0,0 +1,89 @@
|
||||||
|
{ stdenv
|
||||||
|
, lib
|
||||||
|
, fetchFromGitLab
|
||||||
|
, biometryd
|
||||||
|
, cmake
|
||||||
|
, libqtdbusmock
|
||||||
|
, libqtdbustest
|
||||||
|
, lomiri-system-settings-unwrapped
|
||||||
|
, pkg-config
|
||||||
|
, polkit
|
||||||
|
, python3
|
||||||
|
, qtbase
|
||||||
|
, qtdeclarative
|
||||||
|
, trust-store
|
||||||
|
, xvfb-run
|
||||||
|
}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation (finalAttrs: {
|
||||||
|
pname = "lomiri-system-settings-security-privacy";
|
||||||
|
version = "1.0.2";
|
||||||
|
|
||||||
|
src = fetchFromGitLab {
|
||||||
|
owner = "ubports";
|
||||||
|
repo = "development/core/lomiri-system-settings-security-privacy";
|
||||||
|
rev = finalAttrs.version;
|
||||||
|
hash = "sha256-d7OgxV362gJ3t5N+DEFgwyK+m6Ij6juRPuxfmbCg68Y=";
|
||||||
|
};
|
||||||
|
|
||||||
|
postPatch = ''
|
||||||
|
# CMake pkg_get_variable cannot replace prefix variable yet
|
||||||
|
for pcvar in plugin_manifest_dir plugin_private_module_dir plugin_qml_dir; do
|
||||||
|
pcvarname=$(echo $pcvar | tr '[:lower:]' '[:upper:]')
|
||||||
|
substituteInPlace CMakeLists.txt \
|
||||||
|
--replace-fail "pkg_get_variable($pcvarname LomiriSystemSettings $pcvar)" "set($pcvarname $(pkg-config LomiriSystemSettings --define-variable=prefix=$out --define-variable=libdir=$out/lib --variable=$pcvar))"
|
||||||
|
done
|
||||||
|
'';
|
||||||
|
|
||||||
|
strictDeps = true;
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
cmake
|
||||||
|
pkg-config
|
||||||
|
python3
|
||||||
|
];
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
lomiri-system-settings-unwrapped
|
||||||
|
polkit
|
||||||
|
qtbase
|
||||||
|
qtdeclarative
|
||||||
|
trust-store
|
||||||
|
];
|
||||||
|
|
||||||
|
# QML components and schemas the wrapper needs
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
biometryd
|
||||||
|
];
|
||||||
|
|
||||||
|
nativeCheckInputs = [
|
||||||
|
xvfb-run
|
||||||
|
];
|
||||||
|
|
||||||
|
checkInputs = [
|
||||||
|
libqtdbusmock
|
||||||
|
libqtdbustest
|
||||||
|
];
|
||||||
|
|
||||||
|
# Plugin library & modules for LSS
|
||||||
|
dontWrapQtApps = true;
|
||||||
|
|
||||||
|
cmakeFlags = [
|
||||||
|
(lib.cmakeBool "ENABLE_TESTS" finalAttrs.finalPackage.doCheck)
|
||||||
|
];
|
||||||
|
|
||||||
|
doCheck = stdenv.buildPlatform.canExecute stdenv.hostPlatform;
|
||||||
|
|
||||||
|
preCheck = ''
|
||||||
|
export QT_PLUGIN_PATH=${lib.getBin qtbase}/${qtbase.qtPluginPrefix}
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Security and privacy settings plugin for Lomiri system settings";
|
||||||
|
homepage = "https://gitlab.com/ubports/development/core/lomiri-system-settings-security-privacy";
|
||||||
|
changelog = "https://gitlab.com/ubports/development/core/lomiri-system-settings-security-privacy/-/blob/${finalAttrs.version}/ChangeLog";
|
||||||
|
license = licenses.gpl3Only;
|
||||||
|
maintainers = teams.lomiri.members;
|
||||||
|
platforms = platforms.linux;
|
||||||
|
};
|
||||||
|
})
|
|
@ -9,6 +9,7 @@ let
|
||||||
in {
|
in {
|
||||||
#### Core Apps
|
#### Core Apps
|
||||||
lomiri-system-settings-unwrapped = callPackage ./applications/lomiri-system-settings { };
|
lomiri-system-settings-unwrapped = callPackage ./applications/lomiri-system-settings { };
|
||||||
|
lomiri-system-settings-security-privacy = callPackage ./applications/lomiri-system-settings/plugins/lomiri-system-settings-security-privacy.nix { };
|
||||||
lomiri-terminal-app = callPackage ./applications/lomiri-terminal-app { };
|
lomiri-terminal-app = callPackage ./applications/lomiri-terminal-app { };
|
||||||
morph-browser = callPackage ./applications/morph-browser { };
|
morph-browser = callPackage ./applications/morph-browser { };
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue