From 3392b9135083da26f7ee7d9a3c4a59ac538aa629 Mon Sep 17 00:00:00 2001 From: Markus Kowalewski Date: Thu, 26 Sep 2024 23:23:32 +0200 Subject: [PATCH] dablin: fix "with lib" in meta --- pkgs/applications/radio/dablin/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/applications/radio/dablin/default.nix b/pkgs/applications/radio/dablin/default.nix index 3f0944c2de02..6afd108fea2c 100644 --- a/pkgs/applications/radio/dablin/default.nix +++ b/pkgs/applications/radio/dablin/default.nix @@ -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 ]; }; }