forked from mirrors/nixpkgs
abracadabra: init at 2.1.1
This commit is contained in:
parent
b4c3f71098
commit
f7ea3ca9eb
50
pkgs/applications/radio/abracadabra/default.nix
Normal file
50
pkgs/applications/radio/abracadabra/default.nix
Normal file
|
@ -0,0 +1,50 @@
|
|||
{ lib, stdenv, fetchFromGitHub, cmake, wrapQtAppsHook
|
||||
, qtbase, qtmultimedia, qttools
|
||||
, faad2, mpg123, portaudio
|
||||
, libusb1, rtl-sdr, airspy, soapysdr-with-plugins
|
||||
} :
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "abracadabra";
|
||||
version = "2.1.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "KejPi";
|
||||
repo = "AbracaDABra";
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-pjcao8KTEmgE54dUBxLLnStszR32LryfciMKScBOGdc=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
cmake
|
||||
wrapQtAppsHook
|
||||
qttools
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
qtbase
|
||||
qtmultimedia
|
||||
faad2
|
||||
mpg123
|
||||
portaudio
|
||||
libusb1
|
||||
rtl-sdr
|
||||
airspy
|
||||
soapysdr-with-plugins
|
||||
];
|
||||
|
||||
cmakeFlags = [
|
||||
"-DAIRSPY=ON"
|
||||
"-DSOAPYSDR=ON"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "DAB/DAB+ radio application";
|
||||
homepage = "https://github.com/KejPi/AbracaDABra";
|
||||
platforms = platforms.linux;
|
||||
license = licenses.mit;
|
||||
maintainers = [ maintainers.markuskowa ];
|
||||
mainProgram = "AbracaDABra";
|
||||
};
|
||||
}
|
||||
|
|
@ -2767,6 +2767,8 @@ with pkgs;
|
|||
|
||||
twine = with python3Packages; toPythonApplication twine;
|
||||
|
||||
abracadabra = qt6Packages.callPackage ../applications/radio/abracadabra { };
|
||||
|
||||
accelergy = callPackage ../applications/science/computer-architecture/accelergy { };
|
||||
|
||||
aldo = callPackage ../applications/radio/aldo { };
|
||||
|
|
Loading…
Reference in a new issue