mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-12 08:43:06 +00:00
63fa53d97c
`treewide: replace stdenv.is with stdenv.hostPlatform.is`
92 lines
2.0 KiB
Nix
92 lines
2.0 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
rustPlatform,
|
|
fetchFromGitHub,
|
|
ntpd-rs,
|
|
installShellFiles,
|
|
darwin,
|
|
pandoc,
|
|
nixosTests,
|
|
nix-update-script,
|
|
testers,
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "ntpd-rs";
|
|
version = "1.3.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "pendulum-project";
|
|
repo = "ntpd-rs";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-0fbl50kugqYHeS+9a/kCkwy1wPDqDCYwPIGZ37NFa/Y=";
|
|
};
|
|
|
|
cargoHash = "sha256-9HLbGC6j0Wq/lG//CeEAfnYzlGG14CnDpmluL1moHWQ=";
|
|
|
|
buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [
|
|
darwin.apple_sdk_11_0.frameworks.Security
|
|
];
|
|
nativeBuildInputs = [
|
|
pandoc
|
|
installShellFiles
|
|
];
|
|
|
|
postPatch = ''
|
|
substituteInPlace utils/generate-man.sh \
|
|
--replace-fail 'utils/pandoc.sh' 'pandoc'
|
|
'';
|
|
|
|
postBuild = ''
|
|
source utils/generate-man.sh
|
|
'';
|
|
|
|
# lots of flaky tests
|
|
doCheck = false;
|
|
|
|
checkFlags = [
|
|
# doesn't find the testca
|
|
"--skip=daemon::keyexchange::tests"
|
|
];
|
|
|
|
postInstall = ''
|
|
install -Dm444 -t $out/lib/systemd/system docs/examples/conf/{ntpd-rs,ntpd-rs-metrics}.service
|
|
installManPage docs/precompiled/man/{ntp.toml.5,ntp-ctl.8,ntp-daemon.8,ntp-metrics-exporter.8}
|
|
'';
|
|
|
|
outputs = [
|
|
"out"
|
|
"man"
|
|
];
|
|
|
|
passthru = {
|
|
tests = {
|
|
nixos = lib.optionalAttrs stdenv.hostPlatform.isLinux nixosTests.ntpd-rs;
|
|
version = testers.testVersion {
|
|
package = ntpd-rs;
|
|
inherit version;
|
|
};
|
|
};
|
|
|
|
updateScript = nix-update-script { };
|
|
};
|
|
|
|
meta = {
|
|
description = "Full-featured implementation of the Network Time Protocol";
|
|
homepage = "https://tweedegolf.nl/en/pendulum";
|
|
changelog = "https://github.com/pendulum-project/ntpd-rs/blob/v${version}/CHANGELOG.md";
|
|
license = with lib.licenses; [
|
|
mit # or
|
|
asl20
|
|
];
|
|
maintainers = with lib.maintainers; [
|
|
fpletz
|
|
getchoo
|
|
];
|
|
mainProgram = "ntp-ctl";
|
|
# note: Undefined symbols for architecture x86_64: "_ntp_adjtime"
|
|
broken = stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isx86_64;
|
|
};
|
|
}
|