nixos/wyoming/{faster-whisper,piper}: drop download directory (#376447)
[NixPkgs.git] / pkgs / by-name / nt / ntpstat / package.nix
blob7293cf6925fa660a4f093c8c30cbb447621315d1
2   lib,
3   stdenvNoCC,
4   fetchFromGitHub,
5 }:
7 stdenvNoCC.mkDerivation (finalAttrs: {
8   pname = "ntpstat";
9   version = "0.6";
11   src = fetchFromGitHub {
12     owner = "mlichvar";
13     repo = "ntpstat";
14     rev = "${finalAttrs.version}";
15     hash = "sha256-dw6Pi+aB7uK65H0HL7q1vYnM5Dp0D+kG+ZIaiv8VH5I=";
16   };
18   postPatch = ''
19     patchShebangs ntpstat
20   '';
22   makeFlags = [ "prefix=${placeholder "out"}" ];
24   meta = {
25     description = "Print the ntpd or chronyd synchronisation status";
26     homepage = "https://github.com/mlichvar/ntpstat";
27     license = lib.licenses.mit;
28     mainProgram = "nptstat";
29     maintainers = with lib.maintainers; [ hzeller ];
30     platforms = lib.platforms.all;
31   };