depot/third_party/nixpkgs/pkgs/tools/text/mecab/nodic.nix

9 lines
178 B
Nix
Raw Normal View History

{ stdenv, fetchurl }:
let
mecab-base = import ./base.nix { inherit fetchurl; };
in
stdenv.mkDerivation (finalAttrs: ((mecab-base finalAttrs) // {
pname = "mecab-nodic";
}))