airspyhf: init at 1.6.8

conduit-nginx
Nikolay Korotkiy 2021-10-18 10:26:23 +03:00
parent d4a0547fed
commit df330f0407
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, pkg-config, libusb1 }:
stdenv.mkDerivation rec {
pname = "airspyhf";
version = "1.6.8";
src = fetchFromGitHub {
owner = "airspy";
repo = pname;
rev = version;
hash = "sha256-RKTMEDPeKcerJZtXTn8eAShxDcZUMgeQg/+7pEpMyVg=";
};
nativeBuildInputs = [ cmake pkg-config ];
buildInputs = [ libusb1 ];
meta = with lib; {
description = "User mode driver for Airspy HF+";
homepage = "https://github.com/airspy/airspyhf";
license = licenses.bsd3;
maintainers = with maintainers; [ sikmir ];
platforms = platforms.unix;
};
}

View File

@ -901,6 +901,8 @@ with pkgs;
airspy = callPackage ../applications/radio/airspy { };
airspyhf = callPackage ../applications/radio/airspyhf { };
airtame = callPackage ../applications/misc/airtame { };
aj-snapshot = callPackage ../applications/audio/aj-snapshot { };