mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 06:53:01 +00:00
dbus-broker: add meta information and license to c-util library
This commit is contained in:
parent
e6a7210c33
commit
aba41ae0d8
@ -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 {
|
||||
@ -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.
|
||||
@ -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;
|
||||
};
|
||||
})
|
||||
|
Loading…
Reference in New Issue
Block a user