core/pkgs/by-name/ge/gettext/packages.nix
2024-06-30 09:16:52 +01:00

9 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;
}