dwdiff: init at 2.1.4

+34
+32
pkgs/applications/misc/dwdiff/default.nix
··· 1 + { lib 2 + , stdenv 3 + , fetchurl 4 + , gettext 5 + , pkg-config 6 + , icu 7 + }: 8 + 9 + stdenv.mkDerivation rec { 10 + pname = "dwdiff"; 11 + version = "2.1.4"; 12 + 13 + src = fetchurl { 14 + url = "https://os.ghalkes.nl/dist/dwdiff-${version}.tar.bz2"; 15 + sha256 = "sha256-3xb+xE3LRn1lpCRqQ2KPk3QZlsF3PpMLkMbd4i3Vjgo="; 16 + }; 17 + 18 + nativeBuildInputs = [ pkg-config ]; 19 + 20 + buildInputs = [ 21 + gettext 22 + icu 23 + ]; 24 + 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 + }; 31 + 32 + }
+2
pkgs/top-level/all-packages.nix
··· 5500 5500 tk = tk-8_5; 5501 5501 }; 5502 5502 5503 + dwdiff = callPackage ../applications/misc/dwdiff { }; 5504 + 5503 5505 picoscope = callPackage ../applications/science/electronics/picoscope { }; 5504 5506 5505 5507 picotts = callPackage ../tools/audio/picotts { };