mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 07:53:19 +00:00
libiio: init at 0.15
Signed-off-by: Austin Seipp <aseipp@pobox.com>
This commit is contained in:
parent
56b9f6fc8e
commit
0f2b10d1ac
29
pkgs/development/libraries/libiio/default.nix
Normal file
29
pkgs/development/libraries/libiio/default.nix
Normal file
@ -0,0 +1,29 @@
|
||||
{ stdenv, fetchFromGitHub
|
||||
, cmake, flex, bison
|
||||
, libxml2
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "libiio-${version}";
|
||||
version = "0.15";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "analogdevicesinc";
|
||||
repo = "libiio";
|
||||
rev = "refs/tags/v${version}";
|
||||
sha256 = "05sbvvjka03qi080ad6g2y6gfwqp3n3zv7dpv237dym0zjyxqfa7";
|
||||
};
|
||||
|
||||
outputs = [ "out" "lib" "dev" ];
|
||||
|
||||
nativeBuildInputs = [ cmake flex bison ];
|
||||
buildInputs = [ libxml2 ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "API for interfacing with the Linux Industrial I/O Subsystem";
|
||||
homepage = https://github.com/analogdevicesinc/libiio;
|
||||
license = licenses.lgpl21;
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ thoughtpolice ];
|
||||
};
|
||||
}
|
@ -10395,6 +10395,8 @@ with pkgs;
|
||||
|
||||
libgrss = callPackage ../development/libraries/libgrss { };
|
||||
|
||||
libiio = callPackage ../development/libraries/libiio { };
|
||||
|
||||
libseccomp = callPackage ../development/libraries/libseccomp { };
|
||||
|
||||
libsecret = callPackage ../development/libraries/libsecret { };
|
||||
|
Loading…
Reference in New Issue
Block a user