treewide: remove lintl references

libintl should be used directly, not through NIX_LDFLAGS.
This commit is contained in:
Matthew Bauer
2018-05-16 01:02:31 -05:00
parent 8419c347ca
commit c605d171bb
5 changed files with 8 additions and 17 deletions
+2 -4
View File
@@ -1,4 +1,4 @@
{ stdenv, fetchurl, pkgconfig, intltool, gtk3 }:
{ stdenv, fetchurl, pkgconfig, intltool, gtk3, libintl }:
stdenv.mkDerivation rec {
name = "lxtask-${version}";
@@ -11,12 +11,10 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ pkgconfig intltool ];
buildInputs = [ gtk3 ];
buildInputs = [ gtk3 libintl ];
configureFlags = [ "--enable-gtk3" ];
NIX_LDFLAGS = stdenv.lib.optionalString stdenv.isDarwin "-lintl";
meta = {
description = "Lightweight and desktop independent task manager";
longDescription = ''