Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

38 lines
574 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
stdenv,
fetchurl,
pkg-config,
glib,
dbus,
openobex,
bluez,
libical,
}:
stdenv.mkDerivation rec {
pname = "obexd";
version = "0.48";
src = fetchurl {
url = "mirror://kernel/linux/bluetooth/obexd-${version}.tar.bz2";
sha256 = "1i20dnibvnq9lnkkhajr5xx3kxlwf9q5c4jm19kyb0q1klzgzlb8";
};
buildInputs = [
glib
dbus
openobex
bluez
libical
];
nativeBuildInputs = [ pkg-config ];
meta = with lib; {
homepage = "https://www.bluez.org/";
platforms = platforms.linux;
license = licenses.gpl3;
};
}