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

29 lines
744 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, cmake, soapysdr, avahi }:
2018-04-25 18:01:40 +01:00
let
version = "0.5.0";
2018-04-25 18:01:40 +01:00
in stdenv.mkDerivation {
name = "soapyremote-${version}";
src = fetchFromGitHub {
owner = "pothosware";
repo = "SoapyRemote";
rev = "soapy-remote-${version}";
sha256 = "1lyjhf934zap61ky7rbk46bp8s8sjk8sgdyszhryfyf571jv9b2i";
2018-04-25 18:01:40 +01:00
};
nativeBuildInputs = [ cmake ];
buildInputs = [ soapysdr avahi ];
2018-04-25 18:01:40 +01:00
cmakeFlags = [ "-DSoapySDR_DIR=${soapysdr}/share/cmake/SoapySDR/" ];
meta = with stdenv.lib; {
homepage = https://github.com/pothosware/SoapyRemote;
description = "SoapySDR plugin for remote access to SDRs";
license = licenses.boost;
maintainers = with maintainers; [ markuskowa ];
platforms = platforms.linux;
};
}