From 945c021476da4f8bf0a1845d5c5bee9f9f4d1451 Mon Sep 17 00:00:00 2001 From: "Ricardo M. Correia" Date: Mon, 14 Jun 2021 00:27:20 +0200 Subject: [PATCH] imv: clarify license licenses.gpl2 is deprecated, either gpl2Only or gpl2Plus should be specified. However, imv is dual-licensed under the GPL and MIT licenses. MIT is the one in the root LICENSE file, it's the one that Github shows in the main repo page and is also the more permissive one, therefore I changed it to licenses.mit. --- pkgs/applications/graphics/imv/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/graphics/imv/default.nix b/pkgs/applications/graphics/imv/default.nix index 298226ed0afd..e9488b845f22 100644 --- a/pkgs/applications/graphics/imv/default.nix +++ b/pkgs/applications/graphics/imv/default.nix @@ -109,7 +109,7 @@ stdenv.mkDerivation rec { meta = with lib; { description = "A command line image viewer for tiling window managers"; homepage = "https://github.com/eXeC64/imv"; - license = licenses.gpl2; + license = licenses.mit; maintainers = with maintainers; [ rnhmjoj markus1189 ]; platforms = platforms.all; };