welle-io: 2.5 -> 2.7

Diff: https://github.com/AlbrechtL/welle.io/compare/v2.5...v2.7
This commit is contained in:
emaryn 2025-06-08 21:28:10 +08:00
parent 4440221965
commit d641a43bd5

View file

@ -1,6 +1,6 @@
{ {
stdenv,
lib, lib,
stdenv,
fetchFromGitHub, fetchFromGitHub,
cmake, cmake,
pkg-config, pkg-config,
@ -8,7 +8,6 @@
qtbase, qtbase,
qtcharts, qtcharts,
qtmultimedia, qtmultimedia,
qtdeclarative,
qt5compat, qt5compat,
faad2, faad2,
rtl-sdr, rtl-sdr,
@ -17,25 +16,27 @@
fftwSinglePrec, fftwSinglePrec,
lame, lame,
mpg123, mpg123,
unixtools,
withFlac ? true, withFlac ? true,
flac, flac,
}: }:
stdenv.mkDerivation rec { stdenv.mkDerivation (finalAttrs: {
pname = "welle-io"; pname = "welle-io";
version = "2.5"; version = "2.7";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "AlbrechtL"; owner = "AlbrechtL";
repo = "welle.io"; repo = "welle.io";
rev = "v${version}"; tag = "v${finalAttrs.version}";
hash = "sha256-sSknzZiD9/MLyO+gAYopogOQu5HRcqaRcfqwq4Rld7A="; hash = "sha256-+xjwvxFrv++XF6Uhm/ZwkseuToz3LtqCfTD18GiwNyw=";
}; };
nativeBuildInputs = [ nativeBuildInputs = [
cmake cmake
pkg-config pkg-config
wrapQtAppsHook wrapQtAppsHook
unixtools.xxd
]; ];
buildInputs = [ buildInputs = [
@ -70,4 +71,4 @@ stdenv.mkDerivation rec {
"i686-linux" "i686-linux"
] ++ lib.platforms.darwin; ] ++ lib.platforms.darwin;
}; };
} })