treewide: add meta.mainProgram (#249601)

This commit is contained in:
xrelkd 2023-08-17 04:58:46 +08:00 committed by GitHub
parent 66469836be
commit 9049df5a04
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 9 additions and 1 deletions

View file

@ -28,5 +28,6 @@ rustPlatform.buildRustPackage rec {
homepage = "https://github.com/nrempel/sleek"; homepage = "https://github.com/nrempel/sleek";
license = licenses.mit; license = licenses.mit;
maintainers = with maintainers; [ xrelkd ]; maintainers = with maintainers; [ xrelkd ];
mainProgram = "sleek";
}; };
} }

View file

@ -58,5 +58,6 @@ rustPlatform.buildRustPackage rec {
homepage = "https://github.com/launchbadge/sqlx"; homepage = "https://github.com/launchbadge/sqlx";
license = licenses.asl20; license = licenses.asl20;
maintainers = with maintainers; [ greizgh xrelkd fd ]; maintainers = with maintainers; [ greizgh xrelkd fd ];
mainProgram = "sqlx";
}; };
} }

View file

@ -1,4 +1,8 @@
{ lib, buildGoModule, fetchFromGitHub, installShellFiles }: { lib
, buildGoModule
, fetchFromGitHub
, installShellFiles
}:
buildGoModule rec { buildGoModule rec {
pname = "eksctl"; pname = "eksctl";
@ -40,5 +44,6 @@ buildGoModule rec {
homepage = "https://github.com/weaveworks/eksctl"; homepage = "https://github.com/weaveworks/eksctl";
license = licenses.asl20; license = licenses.asl20;
maintainers = with maintainers; [ xrelkd Chili-Man ]; maintainers = with maintainers; [ xrelkd Chili-Man ];
mainProgram = "eksctl";
}; };
} }

View file

@ -28,5 +28,6 @@ rustPlatform.buildRustPackage rec {
homepage = "https://github.com/bytecodealliance/wit-bindgen"; homepage = "https://github.com/bytecodealliance/wit-bindgen";
license = licenses.asl20; license = licenses.asl20;
maintainers = with maintainers; [ xrelkd ]; maintainers = with maintainers; [ xrelkd ];
mainProgram = "wit-bindgen";
}; };
} }