mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-30 00:34:00 +00:00
4f0dadbf38
After final improvements to the official formatter implementation, this commit now performs the first treewide reformat of Nix files using it. This is part of the implementation of RFC 166. Only "inactive" files are reformatted, meaning only files that aren't being touched by any PR with activity in the past 2 months. This is to avoid conflicts for PRs that might soon be merged. Later we can do a full treewide reformat to get the rest, which should not cause as many conflicts. A CI check has already been running for some time to ensure that new and already-formatted files are formatted, so the files being reformatted here should also stay formatted. This commit was automatically created and can be verified using nix-builda08b3a4d19
.tar.gz \ --argstr baseRevb32a094368
result/bin/apply-formatting $NIXPKGS_PATH
123 lines
3.6 KiB
Nix
123 lines
3.6 KiB
Nix
{
|
|
stdenv,
|
|
lib,
|
|
fetchFromGitLab,
|
|
fetchpatch,
|
|
gitUpdater,
|
|
testers,
|
|
boost,
|
|
cmake,
|
|
doxygen,
|
|
gtest,
|
|
leveldb,
|
|
lomiri,
|
|
pkg-config,
|
|
python3,
|
|
validatePkgConfig,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "persistent-cache-cpp";
|
|
version = "1.0.7";
|
|
|
|
src = fetchFromGitLab {
|
|
owner = "ubports";
|
|
repo = "development/core/lib-cpp/persistent-cache-cpp";
|
|
rev = finalAttrs.version;
|
|
hash = "sha256-bOABrRSy5Mzeaqoc5ujcGXyBAaCJLv/488M7fkr0npE=";
|
|
};
|
|
|
|
outputs = [
|
|
"out"
|
|
"dev"
|
|
"doc"
|
|
];
|
|
|
|
patches = [
|
|
# PersistentStringCacheImpl.exceptions test fails on LLVM's libcxx, it depends on std::system_error producing a very specific exception text
|
|
# Expects "Unknown error 666", gets "unspecified generic_category error"
|
|
# Remove when https://gitlab.com/ubports/development/core/lib-cpp/persistent-cache-cpp/-/merge_requests/14 merged & in release
|
|
(fetchpatch {
|
|
name = "0001-persistent-cache-cpp-persistent_string_cache_impl_test-libcxx-fix.patch";
|
|
url = "https://gitlab.com/ubports/development/core/lib-cpp/persistent-cache-cpp/-/commit/a696dbd3093b8333f9ee1f0cad846b2256c729c5.patch";
|
|
hash = "sha256-SJxdXeM7W+WKEmiLTwnQYAM7YmPayEk6vPb46y4thv4=";
|
|
})
|
|
|
|
# Enable usage of BUILD_TESTING to opting out of tests
|
|
# Remove when https://gitlab.com/ubports/development/core/lib-cpp/persistent-cache-cpp/-/merge_requests/15 merged & in release
|
|
(fetchpatch {
|
|
name = "0002-persistent-cache-cpp-Enable-opting-out-of-tests.patch";
|
|
url = "https://gitlab.com/ubports/development/core/lib-cpp/persistent-cache-cpp/-/commit/1fb06d28c16325e90046e93662c0f5fd16c29b4a.patch";
|
|
hash = "sha256-2/6EYBh71S4dzqWEde+3dLOGp015fN6IifAj1bI1XAI=";
|
|
})
|
|
];
|
|
|
|
postPatch =
|
|
''
|
|
# Wrong concatenation
|
|
substituteInPlace data/libpersistent-cache-cpp.pc.in \
|
|
--replace "\''${prefix}/@CMAKE_INSTALL_LIBDIR@" "\''${prefix}/lib"
|
|
|
|
# Runs in parallel to other tests, limit to 1 thread
|
|
substituteInPlace tests/headers/compile_headers.py \
|
|
--replace 'multiprocessing.cpu_count()' '1'
|
|
|
|
sed '1i#include <iomanip>' \
|
|
-i tests/core/persistent_string_cache/speed_test.cpp
|
|
''
|
|
+ lib.optionalString finalAttrs.finalPackage.doCheck ''
|
|
patchShebangs tests/{headers,whitespace}/*.py
|
|
'';
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
doxygen
|
|
pkg-config
|
|
validatePkgConfig
|
|
];
|
|
|
|
buildInputs = [
|
|
boost
|
|
lomiri.cmake-extras
|
|
leveldb
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
python3
|
|
];
|
|
|
|
checkInputs = [
|
|
gtest
|
|
];
|
|
|
|
cmakeFlags = [
|
|
# error: 'old_version' may be used uninitialized
|
|
(lib.cmakeBool "Werror" false)
|
|
# Defaults to static if not set
|
|
(lib.cmakeBool "BUILD_SHARED_LIBS" (!stdenv.hostPlatform.isStatic))
|
|
];
|
|
|
|
doCheck = stdenv.buildPlatform.canExecute stdenv.hostPlatform;
|
|
|
|
passthru = {
|
|
tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage;
|
|
updateScript = gitUpdater { };
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Cache of key-value pairs with persistent storage for C++ 11";
|
|
longDescription = ''
|
|
A persistent cache for arbitrary (possibly large amount of data, such as
|
|
image files) that is fast, scalable, and crash-proof.
|
|
'';
|
|
homepage = "https://gitlab.com/ubports/development/core/lib-cpp/persistent-cache-cpp";
|
|
changelog = "https://gitlab.com/ubports/development/core/lib-cpp/persistent-cache-cpp/-/blob/${finalAttrs.version}/ChangeLog";
|
|
license = licenses.lgpl3Only;
|
|
maintainers = teams.lomiri.members;
|
|
platforms = platforms.unix;
|
|
pkgConfigModules = [
|
|
"libpersistent-cache-cpp"
|
|
];
|
|
};
|
|
})
|