1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-21 13:10:33 +00:00

soapyremote: add 0.4.3 -> 0.5.0

* add avahi for DNS-SD
This commit is contained in:
Markus Kowalewski 2018-12-16 01:52:13 +01:00
parent 7d3993295c
commit 8a1aa036d3
No known key found for this signature in database
GPG key ID: D865C8A91D7025EB

View file

@ -1,7 +1,7 @@
{ stdenv, fetchFromGitHub, cmake, soapysdr }:
{ stdenv, fetchFromGitHub, cmake, soapysdr, avahi }:
let
version = "0.4.3";
version = "0.5.0";
in stdenv.mkDerivation {
name = "soapyremote-${version}";
@ -9,12 +9,12 @@ in stdenv.mkDerivation {
src = fetchFromGitHub {
owner = "pothosware";
repo = "SoapyRemote";
rev = "d07f43863b1ef79252f8029cfb5947220f21311d";
sha256 = "0i101dfqq0aawybv0qyjgsnhk39dc4q6z6ys2gsvwjhpf3d48aw0";
rev = "soapy-remote-${version}";
sha256 = "1lyjhf934zap61ky7rbk46bp8s8sjk8sgdyszhryfyf571jv9b2i";
};
nativeBuildInputs = [ cmake ];
buildInputs = [ soapysdr ];
buildInputs = [ soapysdr avahi ];
cmakeFlags = [ "-DSoapySDR_DIR=${soapysdr}/share/cmake/SoapySDR/" ];