mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-28 15:54:32 +00:00
29ab705c17
repeat of #271241 discussion: #272978 I did not replace the instance in eiwd, since it causes an infinite recursion.
130 lines
2.8 KiB
Nix
130 lines
2.8 KiB
Nix
{ stdenv
|
|
, lib
|
|
, fetchFromGitLab
|
|
, gitUpdater
|
|
, testers
|
|
, boost
|
|
, cmake
|
|
, cmake-extras
|
|
, dbus
|
|
, dbus-cpp
|
|
, doxygen
|
|
, gettext
|
|
, glog
|
|
, graphviz
|
|
, gtest
|
|
, libapparmor
|
|
, newt
|
|
, pkg-config
|
|
, process-cpp
|
|
, properties-cpp
|
|
, qtbase
|
|
, qtdeclarative
|
|
, validatePkgConfig
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "trust-store";
|
|
version = "2.0.2";
|
|
|
|
src = fetchFromGitLab {
|
|
owner = "ubports";
|
|
repo = "development/core/trust-store";
|
|
rev = finalAttrs.version;
|
|
hash = "sha256-tVwqBu4py8kdydyKECZfLvcLijpZSQszeo8ytTDagy0=";
|
|
};
|
|
|
|
outputs = [
|
|
"out"
|
|
"dev"
|
|
"doc"
|
|
"bin"
|
|
];
|
|
|
|
postPatch = ''
|
|
# pkg-config patching hook expects prefix variable
|
|
substituteInPlace data/trust-store.pc.in \
|
|
--replace-fail 'libdir=''${exec_prefix}' 'libdir=''${prefix}' \
|
|
--replace-fail 'includedir=''${exec_prefix}' 'includedir=''${prefix}'
|
|
|
|
substituteInPlace src/core/trust/terminal_agent.h \
|
|
--replace-fail '/bin/whiptail' '${lib.getExe' newt "whiptail"}'
|
|
'' + lib.optionalString (!finalAttrs.finalPackage.doCheck) ''
|
|
substituteInPlace CMakeLists.txt \
|
|
--replace-fail 'add_subdirectory(tests)' ""
|
|
'';
|
|
|
|
strictDeps = true;
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
doxygen
|
|
gettext
|
|
graphviz
|
|
pkg-config
|
|
validatePkgConfig
|
|
];
|
|
|
|
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
|
|
(lib.cmakeBool "TRUST_STORE_MIR_AGENT_ENABLED" false)
|
|
(lib.cmakeBool "TRUST_STORE_ENABLE_DOC_GENERATION" true)
|
|
# error: moving a temporary object prevents copy elision
|
|
(lib.cmakeBool "ENABLE_WERROR" false)
|
|
];
|
|
|
|
# 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;
|
|
updateScript = gitUpdater { };
|
|
};
|
|
|
|
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"
|
|
];
|
|
};
|
|
})
|