Merge pull request #245773 from 999eagle/update/iio-sensor-proxy

This commit is contained in:
Janik 2023-07-31 21:01:12 +02:00 committed by GitHub
commit f7cff68f65
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,51 +1,58 @@
{ lib, stdenv, fetchFromGitLab, autoconf-archive, gettext, libtool, intltool, autoconf, automake
, glib, gtk3, gtk-doc, libgudev, pkg-config, systemd }:
{ lib
, stdenv
, fetchFromGitLab
, cmake
, libxml2
, meson
, ninja
, pkg-config
, libgudev
, systemd
, polkit
}:
stdenv.mkDerivation rec {
pname = "iio-sensor-proxy";
version = "3.0";
version = "3.5";
src = fetchFromGitLab {
domain = "gitlab.freedesktop.org";
owner = "hadess";
repo = pname;
rev = version;
sha256 = "0ngbz1vkbjci3ml6p47jh6c6caipvbkm8mxrc8ayr6vc2p9l1g49";
owner = "hadess";
repo = pname;
rev = version;
hash = "sha256-pFu+nJzj45s7yIKoLWLeiv2AT5vLf6JpdWWQ0JZfnvY=";
};
configurePhase = ''
runHook preConfigure
./autogen.sh --prefix=$out \
--with-udevrulesdir=$out/lib/udev/rules.d \
--with-systemdsystemunitdir=$out/lib/systemd/system
runHook postConfigure
postPatch = ''
# upstream meson.build currently doesn't have an option to change the default polkit dir
substituteInPlace data/meson.build \
--replace 'polkit_policy_directory' "'$out/share/polkit-1/actions'"
'';
buildInputs = [
glib
gtk3
gtk-doc
libgudev
systemd
polkit
];
nativeBuildInputs = [
autoconf
autoconf-archive
automake
gettext
intltool
libtool
meson
cmake
libxml2
ninja
pkg-config
];
mesonFlags = [
(lib.mesonOption "udevrulesdir" "${placeholder "out"}/lib/udev/rules.d")
(lib.mesonOption "systemdsystemunitdir" "${placeholder "out"}/lib/systemd/system")
];
meta = with lib; {
description = "Proxy for sending IIO sensor data to D-Bus";
homepage = "https://gitlab.freedesktop.org/hadess/iio-sensor-proxy";
license = licenses.gpl3 ;
maintainers = with maintainers; [ peterhoeg ];
license = licenses.gpl3;
maintainers = with maintainers; [ _999eagle ];
platforms = platforms.linux;
};
}