forked from mirrors/nixpkgs
Merge pull request #203867 from jordanisaacs/nqptp-init
This commit is contained in:
commit
019b182221
28
pkgs/tools/networking/nqptp/default.nix
Normal file
28
pkgs/tools/networking/nqptp/default.nix
Normal 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;
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue