From 10dafbc0b2d775cf59c42247fd1a8e745c42b3f6 Mon Sep 17 00:00:00 2001 From: jopejoe1 Date: Sat, 11 Jul 2026 11:14:53 +0200 Subject: [PATCH] ntp: make use of lib.licenses --- pkgs/by-name/nt/ntp/package.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/by-name/nt/ntp/package.nix b/pkgs/by-name/nt/ntp/package.nix index ea7fda8098a9..e36dad33bf80 100644 --- a/pkgs/by-name/nt/ntp/package.nix +++ b/pkgs/by-name/nt/ntp/package.nix @@ -52,10 +52,10 @@ stdenv.mkDerivation (finalAttrs: { meta = { homepage = "https://www.ntp.org/"; description = "Implementation of the Network Time Protocol"; - license = { - # very close to isc and bsd2 - url = "https://www.eecis.udel.edu/~mills/ntp/html/copyright.html"; - }; + license = lib.licenses.AND [ + lib.licenses.ntp + lib.licenses.bsd2 + ]; maintainers = with lib.maintainers; [ thoughtpolice ]; platforms = lib.platforms.unix; };