core/pkgs/by-name/ge/gettext/packages.nix
2024-05-13 11:34:52 -04:00

10 lines
207 B
Nix

{ ... }:
res: pkgs: super:
with pkgs;
{
gettext = callPackage ./. { };
# On non-GNU systems we need GNU Gettext for libintl.
libintl = if stdenv.hostPlatform.libc != "glibc" then gettext else null;
}