nixpkgs/pkgs/os-specific/linux/iio-sensor-proxy/default.nix
R. RyanTM 5b542f551a iio-sensor-proxy: 2.5 -> 2.7 (#61841)
* iio-sensor-proxy: 2.5 -> 2.6
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/iio-sensor-proxy/versions

* iio-sensor-proxy: 2.6 -> 2.7
This release fixes broken sensor readings on multiple platforms due to a compiler optimisation.
2019-05-22 13:53:30 +02:00

52 lines
1.1 KiB
Nix

{ stdenv, fetchFromGitHub, autoconf-archive, gettext, libtool, intltool, autoconf, automake
, glib, gtk3, gtk-doc, libgudev, pkgconfig, systemd }:
stdenv.mkDerivation rec {
pname = "iio-sensor-proxy";
version = "2.7";
src = fetchFromGitHub {
owner = "hadess";
repo = pname;
rev = version;
sha256 = "05ipljw78d8z90cnkygcrpd0qq4vh14bb9hy06vqxnpdbyq46fxh";
};
configurePhase = ''
runHook preConfigure
./autogen.sh --prefix=$out \
--with-udevrulesdir=$out/lib/udev/rules.d \
--with-systemdsystemunitdir=$out/lib/systemd/system
runHook postConfigure
'';
buildInputs = [
glib
gtk3
gtk-doc
libgudev
systemd
];
nativeBuildInputs = [
autoconf
autoconf-archive
automake
gettext
intltool
libtool
pkgconfig
];
meta = with stdenv.lib; {
description = "Proxy for sending IIO sensor data to D-Bus";
homepage = https://github.com/hadess/iio-sensor-proxy;
license = licenses.gpl3 ;
maintainers = with maintainers; [ peterhoeg ];
platforms = platforms.linux;
inherit version;
};
}