libstemmer: init at 2017-03-02

This commit is contained in:
Franz Pletz 2018-01-28 04:35:14 +01:00
parent a122bf8e9b
commit f8968a2a79
No known key found for this signature in database
GPG Key ID: 846FDED7792617B4
2 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,22 @@
{ lib, stdenv, fetchFromGitHub, cmake }:
stdenv.mkDerivation rec {
name = "libstemmer-2017-03-02";
src = fetchFromGitHub {
owner = "zvelo";
repo = "libstemmer";
rev = "78c149a3a6f262a35c7f7351d3f77b725fc646cf";
sha256 = "06md6n6h1f2zvnjrpfrq7ng46l1x12c14cacbrzmh5n0j98crpq7";
};
nativeBuildInputs = [ cmake ];
meta = with lib; {
description = "Snowball Stemming Algorithms";
homepage = "http://snowball.tartarus.org/";
license = licenses.bsd3;
maintainers = with maintainers; [ fpletz ];
platforms = platforms.all;
};
}

View File

@ -9901,6 +9901,8 @@ with pkgs;
libstartup_notification = callPackage ../development/libraries/startup-notification { };
libstemmer = callPackage ../development/libraries/libstemmer { };
libstroke = callPackage ../development/libraries/libstroke { };
libstrophe = callPackage ../development/libraries/libstrophe { };