abracadabra: 2.5.1 -> 2.6.0 (#344713)

This commit is contained in:
Markus Kowalewski 2024-09-27 14:44:56 +02:00 committed by GitHub
commit 086c2c44f1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,18 +1,32 @@
{ lib, stdenv, fetchFromGitHub, cmake, wrapQtAppsHook
, qtbase, qtmultimedia, qttools
, faad2, mpg123, portaudio
, libusb1, rtl-sdr, airspy, soapysdr-with-plugins
} :
{
lib,
stdenv,
fetchFromGitHub,
cmake,
wrapQtAppsHook,
qtbase,
qtmultimedia,
qttools,
qtpositioning,
qtlocation,
faad2,
mpg123,
portaudio,
libusb1,
rtl-sdr,
airspy,
soapysdr-with-plugins,
}:
stdenv.mkDerivation rec {
pname = "abracadabra";
version = "2.5.1";
version = "2.6.0";
src = fetchFromGitHub {
owner = "KejPi";
repo = "AbracaDABra";
rev = "v${version}";
hash = "sha256-EaHVHfyhQTxxLtb3wsJV7Fea2jyENnfn6Lv/3GwAKdk=";
hash = "sha256-oO8ef2VTw/gVNNU2JRXtEHEkJm7X7dypjZr0vZXCfH8=";
};
nativeBuildInputs = [
@ -24,6 +38,8 @@ stdenv.mkDerivation rec {
buildInputs = [
qtbase
qtmultimedia
qtlocation
qtpositioning
faad2
mpg123
portaudio
@ -47,4 +63,3 @@ stdenv.mkDerivation rec {
mainProgram = "AbracaDABra";
};
}