mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 17:03:01 +00:00
lomiri.trust-store: init at unstable-2023-10-17
This commit is contained in:
parent
ff932567f6
commit
ca55619175
@ -17,6 +17,7 @@ let
|
||||
gmenuharness = callPackage ./development/gmenuharness { };
|
||||
libusermetrics = callPackage ./development/libusermetrics { };
|
||||
lomiri-api = callPackage ./development/lomiri-api { };
|
||||
trust-store = callPackage ./development/trust-store { };
|
||||
u1db-qt = callPackage ./development/u1db-qt { };
|
||||
|
||||
#### QML / QML-related
|
||||
|
119
pkgs/desktops/lomiri/development/trust-store/default.nix
Normal file
119
pkgs/desktops/lomiri/development/trust-store/default.nix
Normal file
@ -0,0 +1,119 @@
|
||||
{ stdenv
|
||||
, lib
|
||||
, fetchFromGitLab
|
||||
, testers
|
||||
, boost
|
||||
, cmake
|
||||
, cmake-extras
|
||||
, dbus
|
||||
, dbus-cpp
|
||||
, doxygen
|
||||
, gettext
|
||||
, glog
|
||||
, graphviz
|
||||
, gtest
|
||||
, libapparmor
|
||||
, newt
|
||||
, pkg-config
|
||||
, process-cpp
|
||||
, properties-cpp
|
||||
, qtbase
|
||||
, qtdeclarative
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation (finalAttrs: {
|
||||
pname = "trust-store";
|
||||
version = "unstable-2023-10-17";
|
||||
|
||||
src = fetchFromGitLab {
|
||||
owner = "ubports";
|
||||
repo = "development/core/trust-store";
|
||||
rev = "7aa7ab5b7f3843e24c13ae6d9b8607455296d60e";
|
||||
hash = "sha256-j+4FZzbG3qh1pGRapFuuMiwT4Lv9P6Ji9/3Z0uGvXmw=";
|
||||
};
|
||||
|
||||
outputs = [
|
||||
"out"
|
||||
"dev"
|
||||
"doc"
|
||||
"bin"
|
||||
];
|
||||
|
||||
postPatch = ''
|
||||
# pkg-config patching hook expects prefix variable
|
||||
substituteInPlace data/trust-store.pc.in \
|
||||
--replace 'includedir=''${exec_prefix}' 'includedir=''${prefix}'
|
||||
|
||||
substituteInPlace src/core/trust/terminal_agent.h \
|
||||
--replace '/bin/whiptail' '${lib.getExe' newt "whiptail"}'
|
||||
'' + lib.optionalString (!finalAttrs.doCheck) ''
|
||||
sed -i CMakeLists.txt -e '/add_subdirectory(tests)/d'
|
||||
'';
|
||||
|
||||
strictDeps = true;
|
||||
|
||||
nativeBuildInputs = [
|
||||
cmake
|
||||
doxygen
|
||||
gettext
|
||||
graphviz
|
||||
pkg-config
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
boost
|
||||
cmake-extras
|
||||
dbus-cpp
|
||||
glog
|
||||
libapparmor
|
||||
newt
|
||||
process-cpp
|
||||
properties-cpp
|
||||
qtbase
|
||||
qtdeclarative
|
||||
];
|
||||
|
||||
nativeCheckInputs = [
|
||||
dbus
|
||||
];
|
||||
|
||||
checkInputs = [
|
||||
gtest
|
||||
];
|
||||
|
||||
dontWrapQtApps = true;
|
||||
|
||||
cmakeFlags = [
|
||||
# Requires mirclient API, unavailable in Mir 2.x
|
||||
# https://gitlab.com/ubports/development/core/trust-store/-/issues/2
|
||||
"-DTRUST_STORE_MIR_AGENT_ENABLED=OFF"
|
||||
"-DTRUST_STORE_ENABLE_DOC_GENERATION=ON"
|
||||
];
|
||||
|
||||
# Not working
|
||||
# - remote_agent_test cases using unix domain socket fail to do *something*, with std::system_error "Invalid argument" + follow-up "No such file or directory".
|
||||
# potentially something broken/missing on our end
|
||||
# - dbus_test hangs indefinitely waiting for a std::future, not provicient enough to debug this.
|
||||
# same hang on upstream CI
|
||||
doCheck = false;
|
||||
|
||||
preCheck = ''
|
||||
export XDG_DATA_HOME=$TMPDIR
|
||||
'';
|
||||
|
||||
# Starts & talks to DBus
|
||||
enableParallelChecking = false;
|
||||
|
||||
passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage;
|
||||
|
||||
meta = with lib; {
|
||||
description = "Common implementation of a trust store to be used by trusted helpers";
|
||||
homepage = "https://gitlab.com/ubports/development/core/trust-store";
|
||||
license = licenses.lgpl3Only;
|
||||
maintainers = teams.lomiri.members;
|
||||
platforms = platforms.linux;
|
||||
pkgConfigModules = [
|
||||
"trust-store"
|
||||
];
|
||||
};
|
||||
})
|
Loading…
Reference in New Issue
Block a user