3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #203867 from jordanisaacs/nqptp-init

This commit is contained in:
Sandro 2023-01-21 18:38:39 +01:00 committed by GitHub
commit 019b182221
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 30 additions and 0 deletions

View file

@ -0,0 +1,28 @@
{ lib
, stdenv
, fetchFromGitHub
, autoreconfHook
, pkg-config
}:
stdenv.mkDerivation rec {
version = "unstable-2022-09-12";
pname = "nqptp";
src = fetchFromGitHub {
owner = "mikebrady";
repo = pname;
rev = "476e69697d2ec1a28d399432aed23c580e3e570a";
hash = "sha256-UPUYEX5YUl//OcsBKuGgKLaAMzn2F+ksNRQJ3/pkbKc=";
};
nativeBuildInputs = [ autoreconfHook pkg-config ];
meta = with lib; {
homepage = "https://github.com/mikebrady/nqptp";
description = "Daemon and companion application to Shairport Sync that monitors timing data from any PTP clocks";
license = licenses.gpl2Only;
maintainers = with maintainers; [ jordanisaacs ];
platforms = platforms.linux ++ platforms.freebsd;
};
}

View file

@ -31129,6 +31129,8 @@ with pkgs;
buildGoModule = buildGo118Module; # tests fail with 1.19
};
nqptp = callPackage ../tools/networking/nqptp { };
mailspring = callPackage ../applications/networking/mailreaders/mailspring {};
mm = callPackage ../applications/networking/instant-messengers/mm { };