Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
48 lines
936 B
Nix
48 lines
936 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
linuxHeaders,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "linuxptp";
|
|
version = "4.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "nwtime";
|
|
repo = "linuxptp";
|
|
rev = "v${version}";
|
|
hash = "sha256-w1buo+D8Mnd6ytMhQYhvCDqt+RejlNSN/iVjrDR+Khk=";
|
|
};
|
|
|
|
outputs = [
|
|
"out"
|
|
"man"
|
|
];
|
|
|
|
postPatch = ''
|
|
substituteInPlace incdefs.sh --replace-fail \
|
|
'/usr/include/linux/' "${linuxHeaders}/include/linux/"
|
|
'';
|
|
|
|
makeFlags = [
|
|
"prefix="
|
|
"CROSS_COMPILE=${stdenv.cc.targetPrefix}"
|
|
];
|
|
|
|
preInstall = ''
|
|
export DESTDIR=$out
|
|
'';
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with lib; {
|
|
description = "Implementation of the Precision Time Protocol (PTP) according to IEEE standard 1588 for Linux";
|
|
homepage = "https://linuxptp.nwtime.org";
|
|
maintainers = [ maintainers.markuskowa ];
|
|
license = licenses.gpl2Only;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|