Commit 0f0c2eb3 authored by bryn's avatar bryn
Browse files

edgedb: format with nixfmt

parent 1970f0ff
Loading
Loading
Loading
Loading
+18 −10
Original line number Diff line number Diff line
@@ -45,13 +45,20 @@ rustPlatform.buildRustPackage rec {
    };
  };

  nativeBuildInputs = [makeBinaryWrapper pkg-config perl];
  nativeBuildInputs = [
    makeBinaryWrapper
    pkg-config
    perl
  ];

  buildInputs =
    [
      curl
    ]
    ++ lib.optionals stdenv.isDarwin [CoreServices Security libiconv xz];
    [ curl ]
    ++ lib.optionals stdenv.isDarwin [
      CoreServices
      Security
      libiconv
      xz
    ];

  checkFeatures = [ ];

@@ -75,12 +82,13 @@ rustPlatform.buildRustPackage rec {
    homepage = "https://www.edgedb.com/docs/cli/index";
    license = with licenses; [
      asl20
      /*
      or
      */
      # or
      mit
    ];
    maintainers = with maintainers; [ahirner kirillrdy];
    maintainers = with maintainers; [
      ahirner
      kirillrdy
    ];
    mainProgram = "edgedb";
  };
}