mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
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 {
|
||||
@ -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;
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user