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";
|
2020-10-08 21:18:19 +01:00
|
|
|
version = "3.1";
|
2019-06-24 12:48:05 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/linuxptp/${pname}-${version}.tgz";
|
2020-10-08 21:18:19 +01:00
|
|
|
sha256 = "0zff502w3nlycgv2ad8cy8nd0hqf34kzpzcygi7prp0lrw8mp3zm";
|
2019-06-24 12:48:05 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace incdefs.sh --replace \
|
|
|
|
'/usr/include/linux/' "${linuxHeaders}/include/linux/"
|
|
|
|
'';
|
|
|
|
|
|
|
|
makeFlags = [ "prefix=" ];
|
|
|
|
|
|
|
|
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";
|
|
|
|
homepage = "http://linuxptp.sourceforge.net/";
|
|
|
|
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;
|
|
|
|
};
|
|
|
|
}
|