Commit b535d5d1 authored by Sizhe Zhao's avatar Sizhe Zhao Committed by Masum Reza
Browse files

gitoxide: avoid with lib;

parent 1516e329
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -53,14 +53,14 @@ rustPlatform.buildRustPackage rec {
  # Needed to get openssl-sys to use pkg-config.
  env.OPENSSL_NO_VENDOR = 1;

  meta = with lib; {
  meta = {
    description = "Command-line application for interacting with git repositories";
    homepage = "https://github.com/GitoxideLabs/gitoxide";
    changelog = "https://github.com/GitoxideLabs/gitoxide/blob/${src.tag}/CHANGELOG.md";
    license = with licenses; [
    license = with lib.licenses; [
      mit # or
      asl20
    ];
    maintainers = with maintainers; [ syberant ];
    maintainers = with lib.maintainers; [ syberant ];
  };
}