guile-aspell: init at 0.5.0
This commit is contained in:
parent
fb8efafdea
commit
29487f181f
1 changed files with 46 additions and 0 deletions
46
pkgs/by-name/gu/guile-aspell/package.nix
Normal file
46
pkgs/by-name/gu/guile-aspell/package.nix
Normal 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;
|
||||
};
|
||||
})
|
Loading…
Reference in a new issue