mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-16 06:47:09 +03:00
48 lines
1.1 KiB
Nix
48 lines
1.1 KiB
Nix
|
{ stdenv, fetchFromGitHub, autoconf-archive, gettext, libtool, intltool, autoconf, automake
|
||
|
, glib, gtk3, gtk_doc, libgudev, pkgconfig, systemd }:
|
||
|
|
||
|
stdenv.mkDerivation rec {
|
||
|
name = "iio-sensor-proxy-${version}";
|
||
|
version = "2.2";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "hadess";
|
||
|
repo = "iio-sensor-proxy";
|
||
|
rev = version;
|
||
|
sha256 = "1x0whwm2r9g50hq5px0bgsrigy8naihqgi6qm0x5q87jz5lkhrnv";
|
||
|
};
|
||
|
|
||
|
configurePhase = ''
|
||
|
./autogen.sh --prefix=$out \
|
||
|
--with-udevrulesdir=$out/lib/udev/rules.d \
|
||
|
--with-systemdsystemunitdir=$out/lib/systemd/system
|
||
|
'';
|
||
|
|
||
|
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;
|
||
|
};
|
||
|
}
|