Skip to content

Commit

Permalink
process-cpp: nixfmt
Browse files Browse the repository at this point in the history
  • Loading branch information
OPNA2608 committed Aug 19, 2024
1 parent b2306dd commit 29058a4
Showing 1 changed file with 23 additions and 20 deletions.
43 changes: 23 additions & 20 deletions pkgs/by-name/pr/process-cpp/package.nix
Original file line number Diff line number Diff line change
@@ -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: {
Expand Down Expand Up @@ -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;

Expand All @@ -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" ];
};
Expand Down

0 comments on commit 29058a4

Please sign in to comment.