mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-12 03:56:17 +03:00
40 lines
939 B
Nix
40 lines
939 B
Nix
{ 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;
|
|
mainProgram = "nqptp";
|
|
maintainers = with lib.maintainers; [ jordanisaacs adamcstephens ];
|
|
platforms = lib.platforms.linux ++ lib.platforms.freebsd;
|
|
};
|
|
}
|