Files
nixpkgs/pkgs/development/php-packages/pspell/default.nix
T
Ihar Hrachyshka 567e8dfd8e treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +01:00

33 lines
581 B
Nix

{
aspell,
buildPecl,
fetchFromGitHub,
lib,
}:
let
version = "1.0.1";
in
buildPecl {
inherit version;
pname = "pspell";
src = fetchFromGitHub {
owner = "php";
repo = "pecl-text-pspell";
rev = version;
hash = "sha256-IVBuEVsUKah8W+oVpIPT9Iln6MFox0e5/5Y14/Kgcg4=";
};
configureFlags = [ "--with-pspell=${aspell}" ];
doCheck = true;
meta = {
description = "PHP extension for checking the spelling of a word";
homepage = "https://pecl.php.net/package/pspell";
license = lib.licenses.php301;
teams = [ lib.teams.php ];
};
}