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

61 lines
1006 B
Nix
Raw Permalink Normal View History

2024-09-26 20:48:45 +02:00
{
lib,
stdenv,
fetchFromGitHub,
cmake,
2024-11-02 21:13:21 +01:00
qt6,
2024-09-26 20:48:45 +02:00
faad2,
mpg123,
portaudio,
libusb1,
rtl-sdr,
airspy,
soapysdr-with-plugins,
}:
2023-05-27 00:25:36 +02:00
stdenv.mkDerivation rec {
pname = "abracadabra";
2025-07-03 20:46:21 +00:00
version = "3.3.0";
2023-05-27 00:25:36 +02:00
src = fetchFromGitHub {
owner = "KejPi";
repo = "AbracaDABra";
2025-06-23 22:25:15 +00:00
tag = "v${version}";
2025-07-03 20:46:21 +00:00
hash = "sha256-udMPbnR/AXF+zCuU6AMcDerqinJ/B1J2OzuFrkQmEh0=";
2023-05-27 00:25:36 +02:00
};
nativeBuildInputs = [
cmake
2024-11-02 21:13:21 +01:00
qt6.wrapQtAppsHook
qt6.qttools
2023-05-27 00:25:36 +02:00
];
buildInputs = [
2024-11-02 21:13:21 +01:00
qt6.qtbase
qt6.qtmultimedia
qt6.qtlocation
qt6.qtpositioning
2023-05-27 00:25:36 +02:00
faad2
mpg123
portaudio
libusb1
rtl-sdr
airspy
soapysdr-with-plugins
];
cmakeFlags = [
"-DAIRSPY=ON"
"-DSOAPYSDR=ON"
];
meta = {
2023-05-27 00:25:36 +02:00
description = "DAB/DAB+ radio application";
homepage = "https://github.com/KejPi/AbracaDABra";
platforms = lib.platforms.linux;
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ markuskowa ];
2023-05-27 00:25:36 +02:00
mainProgram = "AbracaDABra";
};
}