lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

treewide: remove some more gettext references

+12 -16
+1 -3
pkgs/development/libraries/gnutls/generic.nix
··· 40 40 41 41 enableParallelBuilding = true; 42 42 43 - buildInputs = [ lzo lzip libtasn1 libidn p11-kit zlib gmp autogen libunistring unbound ] 44 - ++ lib.optional (stdenv.isFreeBSD || stdenv.isDarwin) libiconv 45 - ++ lib.optional stdenv.isDarwin gettext 43 + buildInputs = [ lzo lzip libtasn1 libidn p11-kit zlib gmp autogen libunistring unbound gettext libiconv ] 46 44 ++ lib.optional (tpmSupport && stdenv.isLinux) trousers 47 45 ++ lib.optional guileBindings guile 48 46 ++ buildInputs;
+1 -1
pkgs/development/libraries/gts/default.nix
··· 11 11 }; 12 12 13 13 nativeBuildInputs = [ pkgconfig ]; 14 - buildInputs = [ glib ] ++ stdenv.lib.optional (stdenv.system == "x86_64-darwin") gettext; 14 + buildInputs = [ glib gettext ]; 15 15 16 16 meta = { 17 17 homepage = http://gts.sourceforge.net/;
+1 -2
pkgs/development/libraries/libassuan/default.nix
··· 11 11 outputs = [ "out" "dev" "info" ]; 12 12 outputBin = "dev"; # libassuan-config 13 13 14 - buildInputs = [ libgpgerror pth ] 15 - ++ stdenv.lib.optional stdenv.isDarwin gettext; 14 + buildInputs = [ libgpgerror pth gettext]; 16 15 17 16 doCheck = true; 18 17
+1 -1
pkgs/development/libraries/libksba/default.nix
··· 10 10 11 11 outputs = [ "out" "dev" "info" ]; 12 12 13 - buildInputs = stdenv.lib.optional stdenv.isDarwin gettext; 13 + buildInputs = [ gettext ]; 14 14 propagatedBuildInputs = [ libgpgerror ]; 15 15 16 16 postInstall = ''
+2 -2
pkgs/development/r-modules/generic-builder.nix
··· 3 3 { name, buildInputs ? [], ... } @ attrs: 4 4 5 5 stdenv.mkDerivation ({ 6 - buildInputs = buildInputs ++ [R] ++ 6 + buildInputs = buildInputs ++ [R gettext] ++ 7 7 stdenv.lib.optionals attrs.requireX [utillinux xvfb_run] ++ 8 - stdenv.lib.optionals stdenv.isDarwin [Cocoa Foundation gettext gfortran]; 8 + stdenv.lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran]; 9 9 10 10 NIX_CFLAGS_COMPILE = 11 11 stdenv.lib.optionalString stdenv.isDarwin "-I${libcxx}/include/c++/v1";
-1
pkgs/os-specific/linux/policycoreutils/default.nix
··· 65 65 inherit (libsepol.meta) homepage platforms maintainers; 66 66 }; 67 67 } 68 -
+1 -1
pkgs/tools/filesystems/e2fsprogs/default.nix
··· 12 12 13 13 depsBuildBuild = [ buildPackages.stdenv.cc ]; 14 14 nativeBuildInputs = [ pkgconfig texinfo ]; 15 - buildInputs = [ libuuid ] ++ stdenv.lib.optional (!stdenv.isLinux) gettext; 15 + buildInputs = [ libuuid gettext ]; 16 16 17 17 configureFlags = 18 18 if stdenv.isLinux then [
+2 -1
pkgs/tools/graphics/graphviz/base.nix
··· 23 23 24 24 buildInputs = [ 25 25 libpng libjpeg expat yacc libtool fontconfig gd gts libdevil flex pango 26 + gettext 26 27 ] ++ optionals (xorg != null) (with xorg; [ libXrender libXaw libXpm ]) 27 - ++ optionals (stdenv.isDarwin) [ ApplicationServices gettext ]; 28 + ++ optionals (stdenv.isDarwin) [ ApplicationServices ]; 28 29 29 30 hardeningDisable = [ "fortify" ]; 30 31
+1 -2
pkgs/tools/networking/lftp/default.nix
··· 15 15 16 16 nativeBuildInputs = [ pkgconfig ]; 17 17 18 - buildInputs = [ gnutls readline zlib libidn2 gmp libiconv libunistring ] 19 - ++ stdenv.lib.optional stdenv.isDarwin gettext; 18 + buildInputs = [ gnutls readline zlib libidn2 gmp libiconv libunistring gettext ]; 20 19 21 20 hardeningDisable = stdenv.lib.optional stdenv.isDarwin "format"; 22 21
+2 -2
pkgs/top-level/perl-packages.nix
··· 3877 3877 \$(BASEEXT)\$(OBJ_EXT): \$(BASEEXT).xsi 3878 3878 3879 3879 \$(BASEEXT).xsi: \$(DBI_DRIVER_XST) $autodir/Driver_xst.h 3880 - \$(PERL) -p -e "s/~DRIVER~/\$(BASEEXT)/g" \$(DBI_DRIVER_XST) > \$(BASEEXT).xsi 3880 + \$(PERL) -p -e "s/~DRIVER~/\$(BASEEXT)/g" \$(DBI_DRIVER_XST) > \$(BASEEXT).xsif 3881 3881 3882 3882 # --- 3883 3883 '; ··· 8071 8071 8072 8072 LocaleGettext = buildPerlPackage { 8073 8073 name = "LocaleGettext-1.05"; 8074 - buildInputs = stdenv.lib.optional (stdenv.isFreeBSD || stdenv.isDarwin || stdenv.isCygwin) pkgs.gettext; 8074 + buildInputs = [ pkgs.gettext ]; 8075 8075 src = fetchurl { 8076 8076 url = mirror://cpan/authors/id/P/PV/PVANDRY/gettext-1.05.tar.gz; 8077 8077 sha256 = "15262a00vx714szpx8p2z52wxkz46xp7acl72znwjydyq4ypydi7";