Unverified Commit 29487f18 authored by Snowflake's avatar Snowflake
Browse files

guile-aspell: init at 0.5.0

parent fb8efafd
Loading
Loading
Loading
Loading
+46 −0
Original line number Diff line number Diff line
{ 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;
  };
})