From fc58af35398f34cf77426a94f37a0e3d0f41aeb0 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Wed, 10 Mar 2021 08:10:07 +0100 Subject: [PATCH] uptimed: specify license --- pkgs/tools/system/uptimed/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/system/uptimed/default.nix b/pkgs/tools/system/uptimed/default.nix index 0113641cb0d..5d0d49f198e 100644 --- a/pkgs/tools/system/uptimed/default.nix +++ b/pkgs/tools/system/uptimed/default.nix @@ -23,8 +23,8 @@ stdenv.mkDerivation rec { which can also easily be used to show your records on a web page. ''; homepage = "https://github.com/rpodgorny/uptimed/"; - license = licenses.gpl2; - platforms = platforms.unix; + license = with licenses; [ gpl2Only lgpl21Plus ]; + maintainers = with maintainers; [ ]; + platforms = platforms.linux; }; - }