nixpkgs/pkgs/applications/radio/soapybladerf/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

35 lines
895 B
Nix
Raw Permalink Normal View History

{ lib, stdenv, fetchFromGitHub, cmake, pkg-config
2018-04-25 17:01:40 +00:00
, libbladeRF, soapysdr
, libobjc, IOKit, Security
2018-04-25 17:01:40 +00:00
} :
let
2019-02-11 22:51:14 +00:00
version = "0.4.1";
2018-04-25 17:01:40 +00:00
in stdenv.mkDerivation {
2019-08-13 21:52:01 +00:00
pname = "soapybladerf";
inherit version;
2018-04-25 17:01:40 +00:00
src = fetchFromGitHub {
owner = "pothosware";
repo = "SoapyBladeRF";
rev = "soapy-bladerf-${version}";
2019-02-11 22:51:14 +00:00
sha256 = "02wh09850vinqg248fw4lxmx7y857cqmnnb8jm9zhyrsggal0hki";
2018-04-25 17:01:40 +00:00
};
nativeBuildInputs = [ cmake pkg-config ];
buildInputs = [ libbladeRF soapysdr ]
++ lib.optionals stdenv.hostPlatform.isDarwin [ libobjc IOKit Security ];
2018-04-25 17:01:40 +00:00
cmakeFlags = [ "-DSoapySDR_DIR=${soapysdr}/share/cmake/SoapySDR/" ];
meta = with lib; {
homepage = "https://github.com/pothosware/SoapyBladeRF";
2018-04-25 17:01:40 +00:00
description = "SoapySDR plugin for BladeRF devices";
2021-02-01 12:31:48 +00:00
license = licenses.lgpl21Only;
2018-04-25 17:01:40 +00:00
maintainers = with maintainers; [ markuskowa ];
platforms = platforms.unix;
2018-04-25 17:01:40 +00:00
};
}