nixpkgs/pkgs/tools/text/kdiff3/default.nix

28 lines
783 B
Nix
Raw Normal View History

{
mkDerivation, lib, fetchurl,
2017-05-16 15:56:41 +00:00
extra-cmake-modules, kdoctools, wrapGAppsHook,
2019-11-22 16:18:40 +00:00
kcrash, kconfig, kinit, kparts, kiconthemes
}:
2017-05-16 15:56:41 +00:00
mkDerivation rec {
pname = "kdiff3";
2021-01-30 06:02:11 +00:00
version = "1.8.5";
2017-05-16 15:56:41 +00:00
src = fetchurl {
url = "https://download.kde.org/stable/${pname}/${pname}-${version}.tar.xz";
2021-01-30 06:02:11 +00:00
sha256 = "sha256-vJL30E6xI/nFbb4wR69nv3FSQPqZSHrB0czypF4IVME=";
};
2017-05-16 15:56:41 +00:00
nativeBuildInputs = [ extra-cmake-modules kdoctools wrapGAppsHook ];
2019-11-22 16:18:40 +00:00
propagatedBuildInputs = [ kconfig kcrash kinit kparts kiconthemes ];
2017-05-16 15:56:41 +00:00
meta = with lib; {
2020-11-05 20:34:27 +00:00
homepage = "https://invent.kde.org/sdk/kdiff3";
2017-05-16 15:56:41 +00:00
license = licenses.gpl2Plus;
description = "Compares and merges 2 or 3 files or directories";
maintainers = with maintainers; [ peterhoeg ];
2017-05-16 15:56:41 +00:00
platforms = with platforms; linux;
};
}