17 lines
255 B
Nix
17 lines
255 B
Nix
{
|
|
pam,
|
|
pkg-config,
|
|
rustPlatform,
|
|
}:
|
|
rustPlatform.buildRustPackage {
|
|
name = "pam_honeypot";
|
|
src = ./.;
|
|
cargoLock.lockFile = ./Cargo.lock;
|
|
nativeBuildInputs = [
|
|
rustPlatform.bindgenHook
|
|
];
|
|
buildInputs = [
|
|
pam
|
|
pkg-config
|
|
];
|
|
}
|