aboutsummaryrefslogtreecommitdiff
path: root/pkgs/development/libraries/libsoup
diff options
context:
space:
mode:
authorMatthew Bauer <mjbauer95@gmail.com>2018-03-14 14:15:06 -0500
committerMatthew Bauer <mjbauer95@gmail.com>2018-03-22 16:50:11 -0500
commited2a9cf65fe2bf02bc3e7070ca4b124260d99585 (patch)
treeeabfdcf2e6203d6da7f1ada80a785455533c9c80 /pkgs/development/libraries/libsoup
parent9e75fb5eb4f26de4e551137c3caaa78b9bf8b050 (diff)
treewide: remove libintl hacks
Diffstat (limited to 'pkgs/development/libraries/libsoup')
-rw-r--r--pkgs/development/libraries/libsoup/default.nix6
1 files changed, 2 insertions, 4 deletions
diff --git a/pkgs/development/libraries/libsoup/default.nix b/pkgs/development/libraries/libsoup/default.nix
index dad245d0791e..92e9c3662c9f 100644
--- a/pkgs/development/libraries/libsoup/default.nix
+++ b/pkgs/development/libraries/libsoup/default.nix
@@ -1,8 +1,8 @@
{ stdenv, fetchurl, glib, libxml2, pkgconfig, gnome3
, gnomeSupport ? true, sqlite, glib-networking, gobjectIntrospection
, valaSupport ? true, vala_0_40
-, libintlOrEmpty
, intltool, python3 }:
+
let
pname = "libsoup";
version = "2.62.0";
@@ -24,7 +24,7 @@ stdenv.mkDerivation rec {
outputs = [ "out" "dev" ];
- buildInputs = libintlOrEmpty ++ [ python3 sqlite ];
+ buildInputs = [ python3 sqlite ];
nativeBuildInputs = [ pkgconfig intltool gobjectIntrospection ]
++ stdenv.lib.optionals valaSupport [ vala_0_40 ];
propagatedBuildInputs = [ glib libxml2 ];
@@ -36,8 +36,6 @@ stdenv.mkDerivation rec {
"--with-gnome=${if gnomeSupport then "yes" else "no"}"
];
- NIX_CFLAGS_COMPILE = stdenv.lib.optionalString stdenv.isDarwin "-lintl";
-
passthru = {
propagatedUserEnvPackages = [ glib-networking.out ];
updateScript = gnome3.updateScript {