Merge pull request #140951 from siraben/knightos-rust-mainprogram

KnightOS (Rust) add mainProgram
This commit is contained in:
Ben Siraphob 2021-10-08 08:19:18 +00:00 committed by GitHub
commit 31b5b9f48f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 0 deletions

View file

@ -23,5 +23,6 @@ stdenv.mkDerivation rec {
license = licenses.mit; license = licenses.mit;
maintainers = with maintainers; [ siraben ]; maintainers = with maintainers; [ siraben ];
platforms = platforms.all; platforms = platforms.all;
mainProgram = "remkrom";
}; };
} }

View file

@ -19,5 +19,6 @@ rustPlatform.buildRustPackage {
homepage = "https://github.com/siraben/regenkfs"; homepage = "https://github.com/siraben/regenkfs";
license = licenses.mit; license = licenses.mit;
maintainers = with maintainers; [ siraben ]; maintainers = with maintainers; [ siraben ];
mainProgram = "regenkfs";
}; };
} }