My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/tools/text/mecab/default.nix

21 lines
566 B

{ lib, stdenv, fetchurl, mecab-ipadic }:
let
mecab-base = import ./base.nix { inherit fetchurl; };
in
stdenv.mkDerivation (mecab-base // {
pname = "mecab";
version = mecab-base.version;
postInstall = ''
sed -i 's|^dicdir = .*$|dicdir = ${mecab-ipadic}|' "$out/etc/mecabrc"
'';
meta = with lib; {
description = "Japanese morphological analysis system";
homepage = "http://taku910.github.io/mecab/";
license = licenses.bsd3;
platforms = platforms.unix;
maintainers = with maintainers; [ auntie ];
};
})