core/pkgs/by-name/ge/gettext/packages.nix
2024-05-13 22:24:10 +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;
}