mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 04:43:09 +03:00
libstemmer: init at 2017-03-02
This commit is contained in:
parent
a122bf8e9b
commit
f8968a2a79
22
pkgs/development/libraries/libstemmer/default.nix
Normal file
22
pkgs/development/libraries/libstemmer/default.nix
Normal 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;
|
||||||
|
};
|
||||||
|
}
|
@ -9901,6 +9901,8 @@ with pkgs;
|
|||||||
|
|
||||||
libstartup_notification = callPackage ../development/libraries/startup-notification { };
|
libstartup_notification = callPackage ../development/libraries/startup-notification { };
|
||||||
|
|
||||||
|
libstemmer = callPackage ../development/libraries/libstemmer { };
|
||||||
|
|
||||||
libstroke = callPackage ../development/libraries/libstroke { };
|
libstroke = callPackage ../development/libraries/libstroke { };
|
||||||
|
|
||||||
libstrophe = callPackage ../development/libraries/libstrophe { };
|
libstrophe = callPackage ../development/libraries/libstrophe { };
|
||||||
|
Loading…
Reference in New Issue
Block a user