numdiff: fix darwin build
This commit is contained in:
parent
8ff1b8b502
commit
b79fb90a1c
|
@ -1,4 +1,4 @@
|
||||||
{ lib, stdenv, fetchurl }:
|
{ lib, stdenv, fetchurl, libintl }:
|
||||||
|
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
|
@ -9,6 +9,9 @@ stdenv.mkDerivation rec {
|
||||||
url = "mirror://savannah/numdiff/numdiff-${version}.tar.gz";
|
url = "mirror://savannah/numdiff/numdiff-${version}.tar.gz";
|
||||||
sha256 = "1vzmjh8mhwwysn4x4m2vif7q2k8i19x8azq7pzmkwwj4g48lla47";
|
sha256 = "1vzmjh8mhwwysn4x4m2vif7q2k8i19x8azq7pzmkwwj4g48lla47";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
buildInputs = [ libintl ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = ''
|
description = ''
|
||||||
A little program that can be used to compare putatively similar files
|
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/";
|
homepage = "https://www.nongnu.org/numdiff/";
|
||||||
license = licenses.gpl3Plus;
|
license = licenses.gpl3Plus;
|
||||||
maintainers = with maintainers; [];
|
maintainers = with maintainers; [];
|
||||||
platforms = platforms.gnu ++ platforms.linux;
|
platforms = platforms.unix;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue