571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
57 lines
1.3 KiB
Nix
57 lines
1.3 KiB
Nix
{ lib
|
|
, stdenv
|
|
, autoreconfHook
|
|
, fetchFromGitHub
|
|
, fetchpatch
|
|
, icu
|
|
, libarchive
|
|
, pkg-config
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "hfst-ospell";
|
|
version = "0.5.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "hfst";
|
|
repo = "hfst-ospell";
|
|
rev = "refs/tags/v${finalAttrs.version}";
|
|
hash = "sha256-16H1nbAIe+G71+TnlLG0WnH9LktZwmc0d0O+oYduH1k=";
|
|
};
|
|
|
|
patches = [
|
|
# Pull upstream fix for gcc-13
|
|
(fetchpatch {
|
|
name = "cstdint.patch";
|
|
url = "https://github.com/hfst/hfst-ospell/commit/7481bffbf622bc9aee3547183fbe8db9cf8b22ce.patch";
|
|
hash = "sha256-q/B5mLx8Oc0nIRe3n3gl0OTyjIaEMCBsPc1GvpE226c=";
|
|
})
|
|
];
|
|
|
|
buildInputs = [
|
|
icu
|
|
libarchive
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
autoreconfHook
|
|
pkg-config
|
|
];
|
|
|
|
# libxmlxx is listed as a dependency but Darwin build fails with it,
|
|
# might also be better in general since libxmlxx in Nixpkgs is 8 years old
|
|
# https://github.com/hfst/hfst-ospell/issues/48#issuecomment-546535653
|
|
configureFlags = [
|
|
"--without-libxmlpp"
|
|
"--without-tinyxml2"
|
|
];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/hfst/hfst-ospell/";
|
|
description = "HFST spell checker library and command line tool";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ lurkki ];
|
|
platforms = platforms.unix;
|
|
};
|
|
})
|