mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-04-13 10:47:33 +00:00
process-cpp: nixfmt
This commit is contained in:
parent
b2306ddcb8
commit
29058a4be2
@ -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" ];
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user