23b612e36f
GitOrigin-RevId: ae5c332cbb5827f6b1f02572496b141021de335f
53 lines
1.4 KiB
Nix
53 lines
1.4 KiB
Nix
{ callPackage
|
|
, substituteAll
|
|
, runtimeShell
|
|
, coreutils
|
|
, gnused
|
|
, gnugrep
|
|
, jq
|
|
, util-linux
|
|
, nix
|
|
, lib
|
|
, nixosTests
|
|
, installShellFiles
|
|
}:
|
|
let
|
|
fallback = import ./../../../../nixos/modules/installer/tools/nix-fallback-paths.nix;
|
|
in
|
|
substituteAll {
|
|
name = "nixos-rebuild";
|
|
src = ./nixos-rebuild.sh;
|
|
dir = "bin";
|
|
isExecutable = true;
|
|
inherit runtimeShell nix;
|
|
nix_x86_64_linux = fallback.x86_64-linux;
|
|
nix_i686_linux = fallback.i686-linux;
|
|
nix_aarch64_linux = fallback.aarch64-linux;
|
|
path = lib.makeBinPath [ coreutils gnused gnugrep jq util-linux ];
|
|
nativeBuildInputs = [
|
|
installShellFiles
|
|
];
|
|
postInstall = ''
|
|
installManPage ${./nixos-rebuild.8}
|
|
|
|
installShellCompletion \
|
|
--bash ${./_nixos-rebuild}
|
|
'';
|
|
|
|
# run some a simple installer tests to make sure nixos-rebuild still works for them
|
|
passthru.tests = {
|
|
install-bootloader = nixosTests.nixos-rebuild-install-bootloader;
|
|
repl = callPackage ./test/repl.nix {};
|
|
simple-installer = nixosTests.installer.simple;
|
|
specialisations = nixosTests.nixos-rebuild-specialisations;
|
|
target-host = nixosTests.nixos-rebuild-target-host;
|
|
};
|
|
|
|
meta = {
|
|
description = "Rebuild your NixOS configuration and switch to it, on local hosts and remote.";
|
|
homepage = "https://github.com/NixOS/nixpkgs/tree/master/pkgs/os-specific/linux/nixos-rebuild";
|
|
license = lib.licenses.mit;
|
|
maintainers = [ lib.maintainers.Profpatsch ];
|
|
mainProgram = "nixos-rebuild";
|
|
};
|
|
}
|