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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
187 B
Nix
Raw Normal View History

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