Commit 4cccefb0 authored by Doron Behar's avatar Doron Behar
Browse files

castget: no with lib; in meta

parent b37cbd72
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -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;
  };
})