numdiff: fix darwin build

+5 -2
+5 -2
pkgs/tools/text/numdiff/default.nix
··· 1 - { lib, stdenv, fetchurl }: 1 + { lib, stdenv, fetchurl, libintl }: 2 2 3 3 4 4 stdenv.mkDerivation rec { ··· 9 9 url = "mirror://savannah/numdiff/numdiff-${version}.tar.gz"; 10 10 sha256 = "1vzmjh8mhwwysn4x4m2vif7q2k8i19x8azq7pzmkwwj4g48lla47"; 11 11 }; 12 + 13 + buildInputs = [ libintl ]; 14 + 12 15 meta = with lib; { 13 16 description = '' 14 17 A little program that can be used to compare putatively similar files ··· 18 21 homepage = "https://www.nongnu.org/numdiff/"; 19 22 license = licenses.gpl3Plus; 20 23 maintainers = with maintainers; []; 21 - platforms = platforms.gnu ++ platforms.linux; 24 + platforms = platforms.unix; 22 25 }; 23 26 }