sdbus-cpp: reorder inputs

This commit is contained in:
Anderson Torres 2023-05-20 20:33:13 -03:00
parent a3f3faa8af
commit 955d34ebe8

View File

@ -2,9 +2,9 @@
, stdenv , stdenv
, fetchFromGitHub , fetchFromGitHub
, cmake , cmake
, expat
, pkg-config , pkg-config
, systemd , systemd
, expat
}: }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
@ -24,15 +24,15 @@ stdenv.mkDerivation rec {
]; ];
buildInputs = [ buildInputs = [
systemd
expat expat
systemd
]; ];
cmakeFlags = [ cmakeFlags = [
"-DBUILD_CODE_GEN=ON" "-DBUILD_CODE_GEN=ON"
]; ];
meta = with lib; { meta = {
homepage = "https://github.com/Kistler-Group/sdbus-cpp"; homepage = "https://github.com/Kistler-Group/sdbus-cpp";
changelog = "https://github.com/Kistler-Group/sdbus-cpp/blob/v${version}/ChangeLog"; changelog = "https://github.com/Kistler-Group/sdbus-cpp/blob/v${version}/ChangeLog";
description = "High-level C++ D-Bus library designed to provide easy-to-use yet powerful API"; description = "High-level C++ D-Bus library designed to provide easy-to-use yet powerful API";