ed6c74e81f
https://github.com/NixOS/nixpkgs/pull/181875 seems to have made this package and its downstream dependencies no longer build on avahi-less systems. Let's make it possible for them to build again.
82 lines
2 KiB
Nix
82 lines
2 KiB
Nix
{ stdenv
|
|
, fetchFromGitHub
|
|
, cmake
|
|
, flex
|
|
, bison
|
|
, libxml2
|
|
, python
|
|
, libusb1
|
|
, avahiSupport ? true, avahi
|
|
, libaio
|
|
, runtimeShell
|
|
, lib
|
|
, pkg-config
|
|
, CFNetwork
|
|
, CoreServices
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libiio";
|
|
version = "0.24";
|
|
|
|
outputs = [ "out" "lib" "dev" "python" ];
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "analogdevicesinc";
|
|
repo = "libiio";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-c5HsxCdp1cv5BGTQ/8dc8J893zk9ntbfAudLpqoQ1ow=";
|
|
};
|
|
|
|
# Revert after https://github.com/NixOS/nixpkgs/issues/125008 is
|
|
# fixed properly
|
|
patches = [ ./cmake-fix-libxml2-find-package.patch ];
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
flex
|
|
bison
|
|
pkg-config
|
|
];
|
|
|
|
buildInputs = [
|
|
python
|
|
libxml2
|
|
libusb1
|
|
] ++ lib.optional python.isPy3k python.pkgs.setuptools
|
|
++ lib.optional avahiSupport avahi
|
|
++ lib.optional stdenv.isLinux libaio
|
|
++ lib.optionals stdenv.isDarwin [ CFNetwork CoreServices ];
|
|
|
|
cmakeFlags = [
|
|
"-DUDEV_RULES_INSTALL_DIR=${placeholder "out"}/lib/udev/rules.d"
|
|
"-DPYTHON_BINDINGS=on"
|
|
# osx framework is disabled,
|
|
# the linux-like directory structure is used for proper output splitting
|
|
"-DOSX_PACKAGE=off"
|
|
"-DOSX_FRAMEWORK=off"
|
|
] ++ lib.optionals (!avahiSupport) [
|
|
"-DHAVE_DNS_SD=OFF"
|
|
];
|
|
|
|
postPatch = ''
|
|
# Hardcode path to the shared library into the bindings.
|
|
sed "s#@libiio@#$lib/lib/libiio${stdenv.hostPlatform.extensions.sharedLibrary}#g" ${./hardcode-library-path.patch} | patch -p1
|
|
|
|
substituteInPlace libiio.rules.cmakein \
|
|
--replace /bin/sh ${runtimeShell}
|
|
'';
|
|
|
|
postInstall = ''
|
|
# Move Python bindings into a separate output.
|
|
moveToOutput ${python.sitePackages} "$python"
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "API for interfacing with the Linux Industrial I/O Subsystem";
|
|
homepage = "https://github.com/analogdevicesinc/libiio";
|
|
license = licenses.lgpl21Plus;
|
|
platforms = platforms.linux ++ platforms.darwin;
|
|
maintainers = with maintainers; [ thoughtpolice ];
|
|
};
|
|
}
|