m17n_lib 1.8.2 -> 1.8.4 https://repology.org/project/m17n-lib/versions attrpath: m17n_lib Checking auto update branch... No auto update branch exists Old version 1.8.2" not present in staging derivation file with contents: { lib , stdenv , fetchurl , m17n_db , autoreconfHook , pkg-config }: stdenv.mkDerivation rec { pname = "m17n-lib"; version = "1.8.4"; src = fetchurl { url = "https://download.savannah.gnu.org/releases/m17n/m17n-lib-${version}.tar.gz"; hash = "sha256-xqJYLG5PKowueihE+lx+s2Oq0lOLBS8gPHEGSd1CHMg="; }; strictDeps = true; # reconf needed to sucesfully cross-compile nativeBuildInputs = [ autoreconfHook pkg-config # requires m17n-db tool at build time m17n_db ]; enableParallelBuilding = true; meta = { homepage = "https://www.nongnu.org/m17n/"; description = "Multilingual text processing library (runtime)"; license = lib.licenses.lgpl21Plus; platforms = lib.platforms.linux; maintainers = with lib.maintainers; [ astsmtl ]; }; }