nixpkgs/pkgs/os-specific/linux/linuxptp/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

34 lines
826 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, linuxHeaders } :
2019-06-24 11:48:05 +00:00
stdenv.mkDerivation rec {
pname = "linuxptp";
version = "3.1.1";
2019-06-24 11:48:05 +00:00
src = fetchurl {
url = "mirror://sourceforge/linuxptp/${pname}-${version}.tgz";
sha256 = "1nf0w4xyzg884v8blb81zkk6q8p6zbiq9lx61jdqwbbzkdgqbmll";
2019-06-24 11:48:05 +00:00
};
postPatch = ''
substituteInPlace incdefs.sh --replace \
'/usr/include/linux/' "${linuxHeaders}/include/linux/"
'';
makeFlags = [ "prefix=" ];
preInstall = ''
export DESTDIR=$out
'';
enableParallelBuilding = true;
meta = with lib; {
2019-06-24 11:48:05 +00:00
description = "Implementation of the Precision Time Protocol (PTP) according to IEEE standard 1588 for Linux";
homepage = "https://linuxptp.sourceforge.net/";
2019-06-24 11:48:05 +00:00
maintainers = [ maintainers.markuskowa ];
2021-02-01 12:36:34 +00:00
license = licenses.gpl2Only;
2019-06-24 11:48:05 +00:00
platforms = platforms.linux;
};
}