mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
40 lines
919 B
Nix
40 lines
919 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;
|
|
};
|
|
}
|