1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2024-10-18 00:16:11 -04:00

Merge pull request #11614 from Gerg-L/master

nix-ng: add meta.mainProgram
This commit is contained in:
tomberek 2024-09-29 18:28:56 -04:00 committed by GitHub
commit 973d4ede84
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -39,7 +39,7 @@
nix-perl-bindings,
}:
(buildEnv rec {
(buildEnv {
name = "nix-${nix-cli.version}";
paths = [
nix-util
@ -76,6 +76,8 @@
] ++ lib.optionals (stdenv.buildPlatform.canExecute stdenv.hostPlatform) [
nix-perl-bindings
];
meta.mainProgram = "nix";
}).overrideAttrs (finalAttrs: prevAttrs: {
doCheck = true;
doInstallCheck = true;