treewide: remove lintl references
libintl should be used directly, not through NIX_LDFLAGS.
This commit is contained in:
@@ -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 = ''
|
||||
|
||||
Reference in New Issue
Block a user