mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-19 03:14:03 +00:00
nqptp: init at unstable-2022-09-12
Corresponds to v1.1-dev-168-g3444047
This commit is contained in:
parent
98156284c2
commit
33c511a094
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;
|
||||||
|
};
|
||||||
|
}
|
@ -30582,6 +30582,8 @@ with pkgs;
|
|||||||
buildGoModule = buildGo118Module; # tests fail with 1.19
|
buildGoModule = buildGo118Module; # tests fail with 1.19
|
||||||
};
|
};
|
||||||
|
|
||||||
|
nqptp = callPackage ../tools/networking/nqptp { };
|
||||||
|
|
||||||
mailspring = callPackage ../applications/networking/mailreaders/mailspring {};
|
mailspring = callPackage ../applications/networking/mailreaders/mailspring {};
|
||||||
|
|
||||||
mm = callPackage ../applications/networking/instant-messengers/mm { };
|
mm = callPackage ../applications/networking/instant-messengers/mm { };
|
||||||
|
Loading…
Reference in New Issue
Block a user