From d1ac498b2cdf63ea54beab0f77823bebc88ef45b Mon Sep 17 00:00:00 2001 From: jopejoe1 Date: Fri, 21 Aug 2026 18:12:50 +0200 Subject: [PATCH] tinyxxd: fix license This is actully the `X11` variant of `MIT` and not the regular `MIT` also made it `OR` --- pkgs/by-name/ti/tinyxxd/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/ti/tinyxxd/package.nix b/pkgs/by-name/ti/tinyxxd/package.nix index 2c0cc51b5520..d60c33fa9b77 100644 --- a/pkgs/by-name/ti/tinyxxd/package.nix +++ b/pkgs/by-name/ti/tinyxxd/package.nix @@ -33,8 +33,8 @@ stdenv.mkDerivation (finalAttrs: { meta = { homepage = "https://github.com/xyproto/tinyxxd"; description = "Drop-in replacement and standalone version of the hex dump utility that comes with ViM"; - license = [ - lib.licenses.mit # or + license = lib.licenses.OR [ + lib.licenses.x11 lib.licenses.gpl2Only ]; mainProgram = "tinyxxd";