airspyhf: init at 1.6.8
This commit is contained in:
parent
d4a0547fed
commit
df330f0407
25
pkgs/applications/radio/airspyhf/default.nix
Normal file
25
pkgs/applications/radio/airspyhf/default.nix
Normal 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;
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user