numdiff: fix darwin build

This commit is contained in:
Ben Siraphob 2021-03-03 19:07:41 +07:00
parent 8ff1b8b502
commit b79fb90a1c

View file

@ -1,4 +1,4 @@
{ lib, stdenv, fetchurl }:
{ lib, stdenv, fetchurl, libintl }:
stdenv.mkDerivation rec {
@ -9,6 +9,9 @@ stdenv.mkDerivation rec {
url = "mirror://savannah/numdiff/numdiff-${version}.tar.gz";
sha256 = "1vzmjh8mhwwysn4x4m2vif7q2k8i19x8azq7pzmkwwj4g48lla47";
};
buildInputs = [ libintl ];
meta = with lib; {
description = ''
A little program that can be used to compare putatively similar files
@ -18,6 +21,6 @@ stdenv.mkDerivation rec {
homepage = "https://www.nongnu.org/numdiff/";
license = licenses.gpl3Plus;
maintainers = with maintainers; [];
platforms = platforms.gnu ++ platforms.linux;
platforms = platforms.unix;
};
}