sigdigger: init at 0.3.0

This commit is contained in:
Grigory Shipunov 2022-10-08 02:29:46 +02:00
parent 49584052fe
commit b9e2097a74
No known key found for this signature in database
GPG Key ID: 91FA5E5BF9AA901C
2 changed files with 61 additions and 0 deletions

View File

@ -0,0 +1,59 @@
{ lib
, stdenv
, fetchFromGitHub
, qmake
, qtbase
, pkg-config
, sigutils
, fftwSinglePrec
, suwidgets
, wrapQtAppsHook
, suscan
, libsndfile
, soapysdr-with-plugins
, libxml2
, volk
}:
stdenv.mkDerivation rec {
pname = "sigdigger";
version = "0.3.0";
src = fetchFromGitHub {
owner = "BatchDrake";
repo = "SigDigger";
rev = "v${version}";
sha256 = "sha256-dS+Fc0iQz7GIlGaR556Ur/EQh3Uzhqm9uBW42IuEqoE=";
};
nativeBuildInputs = [
qmake
pkg-config
wrapQtAppsHook
];
buildInputs = [
qtbase
sigutils
fftwSinglePrec
suwidgets
suscan
libsndfile
libxml2
volk
soapysdr-with-plugins
];
qmakeFlags = [
"SUWIDGETS_PREFIX=${suwidgets}"
"SigDigger.pro"
];
meta = with lib; {
description = "Qt-based digital signal analyzer, using Suscan core and Sigutils DSP library";
homepage = "https://github.com/BatchDrake/SigDigger";
license = licenses.gpl3;
platforms = platforms.all;
maintainers = with maintainers; [ polygon oxapentane ];
};
}

View File

@ -21819,6 +21819,8 @@ with pkgs;
inherit (darwin.apple_sdk.frameworks) AppKit;
};
sigdigger = libsForQt5.callPackage ../applications/radio/sigdigger { };
sigutils = callPackage ../applications/radio/sigutils { };
sblim-sfcc = callPackage ../development/libraries/sblim-sfcc {};