process-cpp: nixfmt

This commit is contained in:
OPNA2608 2024-08-19 11:57:56 +02:00
parent b2306ddcb8
commit 29058a4be2

View File

@ -1,15 +1,16 @@
{ lib
, stdenv
, fetchFromGitLab
, testers
, gitUpdater
, cmake
, coreutils
, boost
, gtest
, lomiri
, properties-cpp
, pkg-config
{
lib,
stdenv,
fetchFromGitLab,
testers,
gitUpdater,
cmake,
coreutils,
boost,
gtest,
lomiri,
properties-cpp,
pkg-config,
}:
stdenv.mkDerivation (finalAttrs: {
@ -52,13 +53,9 @@ stdenv.mkDerivation (finalAttrs: {
properties-cpp
];
checkInputs = [
gtest
];
checkInputs = [ gtest ];
cmakeFlags = [
(lib.cmakeBool "BUILD_TESTING" finalAttrs.finalPackage.doCheck)
];
cmakeFlags = [ (lib.cmakeBool "BUILD_TESTING" finalAttrs.finalPackage.doCheck) ];
doCheck = stdenv.buildPlatform.canExecute stdenv.hostPlatform;
@ -70,8 +67,14 @@ stdenv.mkDerivation (finalAttrs: {
meta = {
description = "Simple convenience library for handling processes in C++11";
homepage = "https://gitlab.com/ubports/development/core/lib-cpp/process-cpp";
license = with lib.licenses; [ gpl3Only lgpl3Only ];
maintainers = with lib.maintainers; [ onny OPNA2608 ];
license = with lib.licenses; [
gpl3Only
lgpl3Only
];
maintainers = with lib.maintainers; [
onny
OPNA2608
];
platforms = lib.platforms.linux;
pkgConfigModules = [ "process-cpp" ];
};