nixpkgs/pkgs/by-name/su/suscan/package.nix

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

53 lines
915 B
Nix
Raw Normal View History

2022-10-08 00:29:07 +00:00
{ lib
, stdenv
, fetchFromGitHub
, cmake
, pkg-config
, fftwSinglePrec
, libsndfile
, sigutils
, soapysdr-with-plugins
, libxml2
, volk
2024-07-31 09:23:51 +00:00
, zlib
2022-10-08 00:29:07 +00:00
}:
stdenv.mkDerivation rec {
pname = "suscan";
version = "0.3.0";
2022-10-08 00:29:07 +00:00
src = fetchFromGitHub {
owner = "BatchDrake";
repo = "suscan";
rev = "v${version}";
2022-10-08 00:29:07 +00:00
sha256 = "sha256-h1ogtYjkqiHb1/NAJfJ0HQIvGnZM2K/PSP5nqLXUf9M=";
};
postPatch = ''
sed -i 's/fftw3 >= 3.0/fftw3f >= 3.0/' suscan.pc.in
'';
nativeBuildInputs = [
cmake
pkg-config
];
buildInputs = [
fftwSinglePrec
libsndfile
sigutils
soapysdr-with-plugins
libxml2
volk
2024-07-31 09:23:51 +00:00
zlib
2022-10-08 00:29:07 +00:00
];
meta = with lib; {
description = "Channel scanner based on sigutils library";
homepage = "https://github.com/BatchDrake/suscan";
license = licenses.gpl3;
platforms = platforms.all;
maintainers = with maintainers; [ polygon oxapentane ];
};
}