Unverified Commit e2ddb637 authored by Amadej Kastelic's avatar Amadej Kastelic
Browse files

ffsend: remove usage of with lib

parent a9bdb813
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -63,7 +63,7 @@ rustPlatform.buildRustPackage rec {
  '';
  # There's also .elv and .ps1 completion files but I don't know where to install those

  meta = with lib; {
  meta = {
    description = "Easily and securely share files from the command line. A fully featured Firefox Send client";
    longDescription = ''
      Easily and securely share files and directories from the command line through a safe, private
@@ -72,9 +72,9 @@ rustPlatform.buildRustPackage rec {
      web browser.
    '';
    homepage = "https://gitlab.com/timvisee/ffsend";
    license = licenses.gpl3Only;
    maintainers = with maintainers; [ equirosa ];
    platforms = platforms.unix;
    license = lib.licenses.gpl3Only;
    maintainers = with lib.maintainers; [ equirosa ];
    platforms = lib.platforms.unix;
    mainProgram = "ffsend";
  };
}