flyctl: remove nested with from meta

This commit is contained in:
superherointj 2024-05-01 16:46:52 -03:00 committed by GitHub
parent 13b3715cfb
commit afbb7ba885
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -52,12 +52,12 @@ buildGo122Module rec {
version = "v${flyctl.version}";
};
meta = with lib; {
meta = {
description = "Command line tools for fly.io services";
downloadPage = "https://github.com/superfly/flyctl";
homepage = "https://fly.io/";
license = licenses.asl20;
maintainers = with maintainers; [ adtya jsierles techknowlogick ];
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ adtya jsierles techknowlogick ];
mainProgram = "flyctl";
};
}