2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchurl, linuxHeaders } :
|
2019-06-24 12:48:05 +01:00
|
|
|
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "linuxptp";
|
2023-12-22 04:55:25 +00:00
|
|
|
version = "4.2";
|
2019-06-24 12:48:05 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/linuxptp/${pname}-${version}.tgz";
|
2023-12-22 04:55:25 +00:00
|
|
|
hash = "sha256-cOOOXSdk4CF0Q9pvFOiEb+QBpHIpOsE42EGcB6ZlRHo=";
|
2019-06-24 12:48:05 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace incdefs.sh --replace \
|
|
|
|
'/usr/include/linux/' "${linuxHeaders}/include/linux/"
|
|
|
|
'';
|
|
|
|
|
2024-01-19 19:14:42 +00:00
|
|
|
makeFlags = [
|
|
|
|
"prefix="
|
|
|
|
"CROSS_COMPILE=${stdenv.cc.targetPrefix}"
|
|
|
|
];
|
2019-06-24 12:48:05 +01:00
|
|
|
|
|
|
|
preInstall = ''
|
|
|
|
export DESTDIR=$out
|
|
|
|
'';
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2019-06-24 12:48:05 +01:00
|
|
|
description = "Implementation of the Precision Time Protocol (PTP) according to IEEE standard 1588 for Linux";
|
2023-01-21 21:41:12 +00:00
|
|
|
homepage = "https://linuxptp.sourceforge.net/";
|
2019-06-24 12:48:05 +01:00
|
|
|
maintainers = [ maintainers.markuskowa ];
|
2021-02-01 12:36:34 +00:00
|
|
|
license = licenses.gpl2Only;
|
2019-06-24 12:48:05 +01:00
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|