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

9 lines
174 B
Nix
Raw Normal View History

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