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

30 lines
755 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, cmake, soapysdr, avahi }:
2018-04-25 17:01:40 +00:00
let
2019-02-11 22:52:05 +00:00
version = "0.5.1";
2018-04-25 17:01:40 +00:00
in stdenv.mkDerivation {
2019-08-13 21:52:01 +00:00
pname = "soapyremote";
inherit version;
2018-04-25 17:01:40 +00:00
src = fetchFromGitHub {
owner = "pothosware";
repo = "SoapyRemote";
rev = "soapy-remote-${version}";
2019-02-11 22:52:05 +00:00
sha256 = "1qlpjg8mh564q26mni8g6bb8w9nj7hgcq86278fszxpwpnk3jsvk";
2018-04-25 17:01:40 +00:00
};
nativeBuildInputs = [ cmake ];
buildInputs = [ soapysdr avahi ];
2018-04-25 17:01:40 +00:00
cmakeFlags = [ "-DSoapySDR_DIR=${soapysdr}/share/cmake/SoapySDR/" ];
meta = with stdenv.lib; {
homepage = "https://github.com/pothosware/SoapyRemote";
2018-04-25 17:01:40 +00:00
description = "SoapySDR plugin for remote access to SDRs";
license = licenses.boost;
maintainers = with maintainers; [ markuskowa ];
platforms = platforms.linux;
};
}