tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
dwdiff: init at 2.1.4
Jonas Heinrich
3 years ago
c4447eee
4ef10c96
+34
2 changed files
expand all
collapse all
unified
split
pkgs
applications
misc
dwdiff
default.nix
top-level
all-packages.nix
+32
pkgs/applications/misc/dwdiff/default.nix
···
1
1
+
{ lib
2
2
+
, stdenv
3
3
+
, fetchurl
4
4
+
, gettext
5
5
+
, pkg-config
6
6
+
, icu
7
7
+
}:
8
8
+
9
9
+
stdenv.mkDerivation rec {
10
10
+
pname = "dwdiff";
11
11
+
version = "2.1.4";
12
12
+
13
13
+
src = fetchurl {
14
14
+
url = "https://os.ghalkes.nl/dist/dwdiff-${version}.tar.bz2";
15
15
+
sha256 = "sha256-3xb+xE3LRn1lpCRqQ2KPk3QZlsF3PpMLkMbd4i3Vjgo=";
16
16
+
};
17
17
+
18
18
+
nativeBuildInputs = [ pkg-config ];
19
19
+
20
20
+
buildInputs = [
21
21
+
gettext
22
22
+
icu
23
23
+
];
24
24
+
25
25
+
meta = with lib; {
26
26
+
description = "Front-end for the diff program that operates at the word level instead of the line level";
27
27
+
homepage = "https://os.ghalkes.nl/dwdiff.html";
28
28
+
license = licenses.gpl3Only;
29
29
+
maintainers = with maintainers; [ onny ];
30
30
+
};
31
31
+
32
32
+
}
+2
pkgs/top-level/all-packages.nix
···
5500
5500
tk = tk-8_5;
5501
5501
};
5502
5502
5503
5503
+
dwdiff = callPackage ../applications/misc/dwdiff { };
5504
5504
+
5503
5505
picoscope = callPackage ../applications/science/electronics/picoscope { };
5504
5506
5505
5507
picotts = callPackage ../tools/audio/picotts { };