welle-io: 2.5 -> 2.7 (#415025)

This commit is contained in:
Christian Kögler 2025-06-08 20:13:33 +02:00 committed by GitHub
commit 145f715b75
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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;
}; };
} })