Unverified Commit d7a0412f authored by Weijia Wang's avatar Weijia Wang Committed by GitHub
Browse files

Merge pull request #265035 from snf1k/guile-aspell

guile-aspell: init at 0.5.0
parents 776ca830 29487f18
Loading
Loading
Loading
Loading
+10 −0
Original line number Diff line number Diff line
@@ -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";
+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;
  };
})