Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
48 lines
790 B
Nix
48 lines
790 B
Nix
{
|
|
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 = [ ];
|
|
platforms = guile.meta.platforms;
|
|
};
|
|
})
|