libad9361: init at 0.2

conduit-nginx
Nikolay Korotkiy 2021-10-18 10:24:22 +03:00
parent 27a748c74f
commit d4a0547fed
No known key found for this signature in database
GPG Key ID: D1DE6D7F693663A5
2 changed files with 27 additions and 0 deletions

View File

@ -0,0 +1,25 @@
{ lib, stdenv, fetchFromGitHub, cmake, libiio }:
stdenv.mkDerivation rec {
pname = "libad9361";
version = "0.2";
src = fetchFromGitHub {
owner = "analogdevicesinc";
repo = "libad9361-iio";
rev = "v${version}";
hash = "sha256-dYoFWRnREvlOC514ZpmmvoS37DmIkVqfq7JPpTXqXd8=";
};
nativeBuildInputs = [ cmake ];
buildInputs = [ libiio ];
meta = with lib; {
description = "IIO AD9361 library for filter design and handling, multi-chip sync, etc";
homepage = "http://analogdevicesinc.github.io/libad9361-iio/";
license = licenses.lgpl21Plus;
maintainers = with maintainers; [ sikmir ];
platforms = platforms.linux;
};
}

View File

@ -16940,6 +16940,8 @@ with pkgs;
inherit (darwin.apple_sdk.frameworks) IOKit;
};
libad9361 = callPackage ../development/libraries/libad9361 { };
libadwaita = callPackage ../development/libraries/libadwaita { };
libaec = callPackage ../development/libraries/libaec { };