tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
numdiff: fix darwin build
Ben Siraphob
4 years ago
b79fb90a
8ff1b8b5
+5
-2
1 changed file
expand all
collapse all
unified
split
pkgs
tools
text
numdiff
default.nix
+5
-2
pkgs/tools/text/numdiff/default.nix
···
1
1
-
{ lib, stdenv, fetchurl }:
1
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
12
+
13
13
+
buildInputs = [ libintl ];
14
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
21
-
platforms = platforms.gnu ++ platforms.linux;
24
24
+
platforms = platforms.unix;
22
25
};
23
26
}