dablin: fix "with lib" in meta

This commit is contained in:
Markus Kowalewski
2024-09-26 23:34:41 +02:00
parent f18347fd07
commit 3392b91350
+4 -4
View File
@@ -17,12 +17,12 @@ stdenv.mkDerivation rec {
buildInputs = [ faad2 mpg123 SDL2 gtkmm3 pcre ];
meta = with lib; {
meta = {
description = "Play DAB/DAB+ from ETI-NI aligned stream";
homepage = "https://github.com/Opendigitalradio/dablin";
license = with licenses; [ gpl3Plus lgpl21Only ];
platforms = platforms.linux;
maintainers = [ maintainers.markuskowa ];
license = with lib.licenses; [ gpl3Plus lgpl21Only ];
platforms = lib.platforms.linux;
maintainers = [ lib.maintainers.markuskowa ];
};
}