evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / dw / dwdiff / package.nix
blob320f8e25bcb75a829a448f05e7785f5f8b2cea01
1 { lib
2 , stdenv
3 , fetchurl
4 , gettext
5 , pkg-config
6 , icu
7 }:
9 stdenv.mkDerivation rec {
10   pname = "dwdiff";
11   version = "2.1.4";
13   src = fetchurl {
14     url = "https://os.ghalkes.nl/dist/dwdiff-${version}.tar.bz2";
15     sha256 = "sha256-3xb+xE3LRn1lpCRqQ2KPk3QZlsF3PpMLkMbd4i3Vjgo=";
16   };
18   nativeBuildInputs = [ pkg-config ];
20   buildInputs = [
21     gettext
22     icu
23   ];
25   meta = with lib; {
26     description = "Front-end for the diff program that operates at the word level instead of the line level";
27     homepage = "https://os.ghalkes.nl/dwdiff.html";
28     license = licenses.gpl3Only;
29     maintainers = with maintainers; [ onny ];
30   };