From 955d34ebe8ec138c45017d4b847d65cbce5d9cf9 Mon Sep 17 00:00:00 2001 From: Anderson Torres Date: Sat, 20 May 2023 20:33:13 -0300 Subject: [PATCH] sdbus-cpp: reorder inputs --- pkgs/development/libraries/sdbus-cpp/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/libraries/sdbus-cpp/default.nix b/pkgs/development/libraries/sdbus-cpp/default.nix index a00d9d4d9da9..02feea64a971 100644 --- a/pkgs/development/libraries/sdbus-cpp/default.nix +++ b/pkgs/development/libraries/sdbus-cpp/default.nix @@ -2,9 +2,9 @@ , stdenv , fetchFromGitHub , cmake +, expat , pkg-config , systemd -, expat }: stdenv.mkDerivation rec { @@ -24,15 +24,15 @@ stdenv.mkDerivation rec { ]; buildInputs = [ - systemd expat + systemd ]; cmakeFlags = [ "-DBUILD_CODE_GEN=ON" ]; - meta = with lib; { + meta = { homepage = "https://github.com/Kistler-Group/sdbus-cpp"; 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";