dablin: fix "with lib" in meta

This commit is contained in:
Markus Kowalewski 2024-09-26 23:23:32 +02:00
parent f18347fd07
commit 3392b91350
No known key found for this signature in database
GPG Key ID: D865C8A91D7025EB

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