37 lines
718 B
Nix
37 lines
718 B
Nix
|
{
|
||
|
buildPackages,
|
||
|
dbus,
|
||
|
lib,
|
||
|
pkg-config,
|
||
|
rustPlatform,
|
||
|
}:
|
||
|
|
||
|
rustPlatform.buildRustPackage {
|
||
|
pname = "switch-to-configuration";
|
||
|
version = "0.1.0";
|
||
|
|
||
|
src = lib.fileset.toSource {
|
||
|
root = ./.;
|
||
|
fileset = lib.fileset.unions [
|
||
|
./Cargo.lock
|
||
|
./Cargo.toml
|
||
|
./build.rs
|
||
|
./src
|
||
|
];
|
||
|
};
|
||
|
|
||
|
cargoLock.lockFile = ./Cargo.lock;
|
||
|
|
||
|
nativeBuildInputs = [ pkg-config ];
|
||
|
buildInputs = [ dbus ];
|
||
|
|
||
|
env.SYSTEMD_DBUS_INTERFACE_DIR = "${buildPackages.systemd}/share/dbus-1/interfaces";
|
||
|
|
||
|
meta = {
|
||
|
description = "NixOS switch-to-configuration program";
|
||
|
mainProgram = "switch-to-configuration";
|
||
|
maintainers = with lib.maintainers; [ jmbaur ];
|
||
|
license = lib.licenses.mit;
|
||
|
};
|
||
|
}
|