Commit d8469ef0 authored by Alyssa Ross's avatar Alyssa Ross
Browse files

pkgsStatic.xorg.libxcvt: mark unsupported

Uses shared_library in Meson.
parent 5e67850d
Loading
Loading
Loading
Loading
+8 −1
Original line number Diff line number Diff line
@@ -134,7 +134,14 @@ self: super:
    };
  });

  libxcvt = addMainProgram super.libxcvt { mainProgram = "cvt"; };
  libxcvt = super.libxcvt.overrideAttrs ({ meta ? {}, ... }: {
    meta = meta // {
      mainProgram = "cvt";
      badPlatforms = meta.badPlatforms or [] ++ [
        lib.systems.inspect.platformPatterns.isStatic
      ];
    };
  });

  libX11 = super.libX11.overrideAttrs (attrs: {
    outputs = [ "out" "dev" "man" ];