Merge pull request #265035 from snf1k/guile-aspell

guile-aspell: init at 0.5.0
This commit is contained in:
Weijia Wang 2023-11-03 16:02:17 +01:00 committed by GitHub
commit d7a0412fc7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 56 additions and 0 deletions

View File

@ -16567,6 +16567,16 @@
github = "SnO2WMaN";
githubId = 15155608;
};
snowflake = {
email = "snowflake@pissmail.com";
name = "Snowflake";
github = "snf1k";
githubId = 149651684;
matrix = "@snowflake:mozilla.org";
keys = [{
fingerprint = "8223 7B6F 2FF4 8F16 B652 6CA3 934F 9E5F 9701 2C0B";
}];
};
snpschaaf = {
email = "philipe.schaaf@secunet.com";
name = "Philippe Schaaf";

View File

@ -0,0 +1,46 @@
{ lib
, stdenv
, fetchFromGitHub
, guile
, autoreconfHook
, pkg-config
, aspell
, texinfo
}:
stdenv.mkDerivation (finalAttrs: {
pname = "guile-aspell";
version = "0.5.0";
src = fetchFromGitHub {
owner = "spk121";
repo = "guile-aspell";
rev = finalAttrs.version;
hash = "sha256-CvLECZLwf4MujAQCL3I81O5xFvq6ezVhV0BjbqI3mR0=";
};
strictDeps = true;
nativeBuildInputs = [
guile
autoreconfHook
pkg-config
texinfo
];
buildInputs = [
guile
];
propagatedBuildInputs = [
aspell
];
meta = with lib; {
description = "Guile bindings for the aspell library";
homepage = "https://github.com/spk121/guile-aspell";
license = licenses.gpl3Only;
maintainers = with maintainers; [ snowflake ];
platforms = guile.meta.platforms;
};
})