Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / libraries / libstemmer / default.nix
blob3f66ee92a72e559ddd4d876a898769ff5b9bd970
1 { lib, stdenv, fetchFromGitHub, perl, buildPackages }:
3 stdenv.mkDerivation rec {
4   pname = "libstemmer";
5   version = "2.2.0";
7   src = fetchFromGitHub {
8     owner = "snowballstem";
9     repo = "snowball";
10     rev = "v${version}";
11     sha256 = "sha256-qXrypwv/I+5npvGHGsHveijoui0ZnoGYhskCfLkewVE=";
12   };
14   nativeBuildInputs = [ perl ];
16   prePatch = ''
17     patchShebangs .
18   '' + lib.optionalString (!stdenv.buildPlatform.canExecute stdenv.hostPlatform) ''
19     substituteInPlace GNUmakefile \
20       --replace './snowball' '${lib.getBin buildPackages.libstemmer}/bin/snowball'
21   '';
23   makeTarget = "libstemmer.a";
25   installPhase = ''
26     runHook preInstall
27     install -Dt $out/lib libstemmer.a
28     install -Dt $out/include include/libstemmer.h
29     install -Dt $out/bin {snowball,stemwords}
30     runHook postInstall
31   '';
33   meta = with lib; {
34     description = "Snowball Stemming Algorithms";
35     homepage = "https://snowballstem.org/";
36     license = licenses.bsd3;
37     maintainers = with maintainers; [ fpletz ];
38     platforms = platforms.all;
39   };