Unverified Commit e3b66aed authored by Wolfgang Walther's avatar Wolfgang Walther Committed by GitHub
Browse files

corefonts: fix build with structuredAttrs (#470415)

parents 9054aa79 735d0f55
Loading
Loading
Loading
Loading
+11 −7
Original line number Diff line number Diff line
@@ -66,13 +66,15 @@ stdenv.mkDerivation {
  pname = "corefonts";
  version = "1";

  exes = map (
  env.exes = toString (
    map (
      { name, hash }:
      fetchurl {
        url = "mirror://sourceforge/corefonts/the%20fonts/final/${name}32.exe";
        inherit hash;
      }
  ) fonts;
    ) fonts
  );

  nativeBuildInputs = [ cabextract ];

@@ -137,6 +139,8 @@ stdenv.mkDerivation {
    done
  '';

  __structuredAttrs = true;

  meta = {
    homepage = "https://corefonts.sourceforge.net/";
    description = "Microsoft's TrueType core fonts for the Web";