Skip to content

Commit

Permalink
dbus-broker: add meta information and license to c-util library
Browse files Browse the repository at this point in the history
  • Loading branch information
0xf09f95b4 committed Oct 26, 2024
1 parent e6a7210 commit aba41ae
Showing 1 changed file with 14 additions and 4 deletions.
18 changes: 14 additions & 4 deletions pkgs/os-specific/linux/dbus-broker/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@
}:

let
meta = {
maintainers = with lib.maintainers; [ peterhoeg ];
platforms = lib.platforms.linux;
};

dep = { pname, version, hash, rev ? "v${version}", buildInputs ? [ ] }:
stdenv.mkDerivation {
Expand All @@ -22,6 +26,14 @@ let
};
nativeBuildInputs = [ meson ninja pkg-config ];
inherit buildInputs;
meta = meta // {
description = "The C-Util Project is a collection of utility libraries for the C11 language.";
homepage = "https://c-util.github.io/";
license = [
lib.licenses.asl20
lib.licenses.lgpl21Plus
];
};
};

# These libraries are not used outside of dbus-broker.
Expand Down Expand Up @@ -89,11 +101,9 @@ stdenv.mkDerivation (finalAttrs: {

doCheck = true;

meta = with lib; {
meta = meta // {
description = "Linux D-Bus Message Broker";
homepage = "https://github.com/bus1/dbus-broker/wiki";
license = licenses.asl20;
maintainers = with maintainers; [ peterhoeg ];
platforms = platforms.linux;
license = lib.licenses.asl20;
};
})

0 comments on commit aba41ae

Please sign in to comment.