about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/networking/nqptp/default.nix
blob: 2db121e2d1891095ceaa66493ea53924eb1bc5fb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{ lib
, stdenv
, fetchFromGitHub
, autoreconfHook
, pkg-config
, gitUpdater
}:

stdenv.mkDerivation rec {
  version = "1.2.4";
  pname = "nqptp";

  src = fetchFromGitHub {
    owner = "mikebrady";
    repo = pname;
    rev = "refs/tags/${version}";
    hash = "sha256-roTNcr3v2kzE6vQ5plAVtlw1+2yJplltOYsGGibtoZo=";
  };

  patches = [
    # this patch should be removed when > 1.2.4
    ./remove-setcap.patch
  ];

  nativeBuildInputs = [ autoreconfHook pkg-config ];

  passthru.updateScript = gitUpdater {
    ignoredVersions = ".*(-dev|d0)";
  };

  meta = {
    homepage = "https://github.com/mikebrady/nqptp";
    description = "Daemon and companion application to Shairport Sync that monitors timing data from any PTP clocks";
    license = lib.licenses.gpl2Only;
    maintainers = with lib.maintainers; [ jordanisaacs adamcstephens ];
    platforms = lib.platforms.linux ++ lib.platforms.freebsd;
  };
}