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