Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion pkgs/top-level/perl-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
fetchurl,
fetchpatch,
fetchpatch2,
fetchDebianPatch,
fetchFromGitHub,
fetchFromGitLab,
perl,
Expand Down Expand Up @@ -36378,13 +36379,24 @@ with self;
};
};

TextUnaccent = buildPerlPackage {
TextUnaccent = buildPerlPackage rec {
pname = "Text-Unaccent";
version = "1.08";
src = fetchurl {
url = "mirror://cpan/authors/id/L/LD/LDACHARY/Text-Unaccent-1.08.tar.gz";
hash = "sha256-J45u/Jsk82mclh77NuvmAqNAi1QVcgF97hMdFScocys=";
};
patches = [
# Fix build with gcc 14
# Convenience link to patch: https://salsa.debian.org/perl-team/modules/packages/libtext-unaccent-perl/-/blob/debian/1.08-2/debian/patches/bug848156.patch
(fetchDebianPatch {
inherit version;
pname = "libtext-unaccent-perl";
debianRevision = "2";
patch = "bug848156.patch";
hash = "sha256-RonSt/nPFYgAxbNU0jyfe1YpipxAJrLcIxwaUPxddoE=";
})
];
# https://rt.cpan.org/Public/Bug/Display.html?id=124815
env.NIX_CFLAGS_COMPILE = "-DHAS_VPRINTF";
meta = {
Expand Down
Loading