Commit c4fae33b authored by Ross Smyth's avatar Ross Smyth
Browse files

hunspell: refactor to by-name and finalAttrs

parent 28872b4b
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -95,8 +95,8 @@ stdenv.mkDerivation (finalAttrs: {
    homepage = "http://hunspell.github.io/";
    changelog = "https://github.com/hunspell/hunspell/releases/tag/${finalAttrs.src.rev}";
    license = with lib.licenses; [
      gpl2
      lgpl21
      gpl2Plus
      lgpl21Plus
      mpl11
    ];
    maintainers = with lib.maintainers; [ getchoo ];
+2 −4
Original line number Diff line number Diff line
@@ -9801,12 +9801,10 @@ with pkgs;
  hspellDicts = callPackage ../development/libraries/hspell/dicts.nix { };
  hunspellDicts = recurseIntoAttrs (
    callPackages ../development/libraries/hunspell/dictionaries.nix { }
  );
  hunspellDicts = recurseIntoAttrs (callPackages ../by-name/hu/hunspell/dictionaries.nix { });
  hunspellDictsChromium = recurseIntoAttrs (
    callPackages ../development/libraries/hunspell/dictionaries-chromium.nix { }
    callPackages ../by-name/hu/hunspell/dictionaries-chromium.nix { }
  );
  hunspellWithDicts = dicts: callPackage ../by-name/hu/hunspell/wrapper.nix { inherit dicts; };