mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-19 02:44:17 +03:00
76999cc40e
This makes the command ‘nix-env -qa -f. --arg config '{skipAliases = true;}'’ work in Nixpkgs. Misc... - qtikz: use libsForQt5.callPackage This ensures we get the right poppler. - rewrites: docbook5_xsl -> docbook_xsl_ns docbook_xml_xslt -> docbook_xsl diffpdf: fixup
26 lines
742 B
Nix
26 lines
742 B
Nix
{ stdenv, fetchurl, pkgconfig, libusb, glib, dbus-glib, bluez, openobex, dbus }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "obex-data-server-0.4.6";
|
|
|
|
src = fetchurl {
|
|
url = "http://tadas.dailyda.com/software/${name}.tar.gz";
|
|
sha256 = "0kq940wqs9j8qjnl58d6l3zhx0jaszci356xprx23l6nvdfld6dk";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [ libusb glib dbus-glib bluez openobex dbus ];
|
|
|
|
patches = [ ./obex-data-server-0.4.6-build-fixes-1.patch ];
|
|
|
|
preConfigure = ''
|
|
addToSearchPath PKG_CONFIG_PATH ${openobex}/lib64/pkgconfig
|
|
export PKG_CONFIG_PATH="${dbus.dev}/lib/pkgconfig:$PKG_CONFIG_PATH"
|
|
'';
|
|
|
|
meta = {
|
|
homepage = http://wiki.muiline.com/obex-data-server;
|
|
platforms = stdenv.lib.platforms.linux;
|
|
};
|
|
}
|