castget: no with lib; in meta

This commit is contained in:
Doron Behar
2025-03-12 09:48:39 +02:00
parent b37cbd7283
commit 4cccefb024
+4 -4
View File
@@ -45,7 +45,7 @@ stdenv.mkDerivation (finalAttrs: {
ronn
];
meta = with lib; {
meta = {
description = "Simple, command-line based RSS enclosure downloader";
mainProgram = "castget";
longDescription = ''
@@ -53,8 +53,8 @@ stdenv.mkDerivation (finalAttrs: {
primarily intended for automatic, unattended downloading of podcasts.
'';
homepage = "https://castget.johndal.com/";
maintainers = with maintainers; [ doronbehar ];
license = licenses.gpl2;
platforms = platforms.linux;
maintainers = with lib.maintainers; [ doronbehar ];
license = lib.licenses.gpl2;
platforms = lib.platforms.linux;
};
})