1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-26 07:31:20 +00:00

libnotify: add license

This commit is contained in:
Markus Kowalewski 2018-10-18 21:17:47 +02:00
parent e7411d6eb5
commit 4877761ab8
No known key found for this signature in database
GPG key ID: D865C8A91D7025EB

View file

@ -17,9 +17,10 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ pkgconfig autoreconfHook gobjectIntrospection ];
buildInputs = [ glib gdk_pixbuf ];
meta = {
meta = with stdenv.lib; {
homepage = https://developer.gnome.org/notification-spec/;
description = "A library that sends desktop notifications to a notification daemon";
platforms = stdenv.lib.platforms.unix;
platforms = platforms.unix;
license = licenses.lgpl21;
};
}