welle-io: remove nested "with lib" in meta.

This commit is contained in:
Markus Kowalewski 2024-10-11 23:44:20 +02:00
parent c307ae10ca
commit aa15d45adf
No known key found for this signature in database
GPG Key ID: D865C8A91D7025EB

View File

@ -55,17 +55,17 @@ stdenv.mkDerivation rec {
"-DSOAPYSDR=true" "-DSOAPYSDR=true"
]; ];
meta = with lib; { meta = {
description = "DAB/DAB+ Software Radio"; description = "DAB/DAB+ Software Radio";
homepage = "https://www.welle.io/"; homepage = "https://www.welle.io/";
maintainers = with maintainers; [ maintainers = with lib.maintainers; [
ck3d ck3d
markuskowa markuskowa
]; ];
license = licenses.gpl2Only; license = lib.licenses.gpl2Only;
platforms = [ platforms = [
"x86_64-linux" "x86_64-linux"
"i686-linux" "i686-linux"
] ++ platforms.darwin; ] ++ lib.platforms.darwin;
}; };
} }