obexd: add licenese

This commit is contained in:
Markus Kowalewski 2018-11-14 23:30:55 +01:00
parent 89d0ad5c85
commit 932861cacb
No known key found for this signature in database
GPG Key ID: D865C8A91D7025EB

View File

@ -1,8 +1,8 @@
{ stdenv, fetchurl, pkgconfig, glib, dbus, openobex, bluez, libical }:
stdenv.mkDerivation rec {
name = "obexd-0.48";
src = fetchurl {
url = "mirror://kernel/linux/bluetooth/${name}.tar.bz2";
sha256 = "1i20dnibvnq9lnkkhajr5xx3kxlwf9q5c4jm19kyb0q1klzgzlb8";
@ -12,8 +12,9 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ pkgconfig ];
meta = {
meta = with stdenv.lib; {
homepage = http://www.bluez.org/;
platforms = stdenv.lib.platforms.linux;
platforms = platforms.linux;
license = licenses.gpl3;
};
}