c7e6337bd0
GitOrigin-RevId: 08e4dc3a907a6dfec8bb3bbf1540d8abbffea22b
39 lines
856 B
Nix
39 lines
856 B
Nix
{ mkDerivation
|
|
, lib
|
|
, fetchurl
|
|
, extra-cmake-modules
|
|
, kdoctools
|
|
, wrapGAppsHook
|
|
, boost
|
|
, kcrash
|
|
, kconfig
|
|
, kinit
|
|
, kparts
|
|
, kiconthemes
|
|
}:
|
|
|
|
mkDerivation rec {
|
|
pname = "kdiff3";
|
|
version = "1.10.1";
|
|
|
|
src = fetchurl {
|
|
url = "https://download.kde.org/stable/${pname}/${pname}-${version}.tar.xz";
|
|
sha256 = "sha256-IFQ0kw9nU2wgUZFir33fQ1hG4qGhJdegmG9M4n+bM8g=";
|
|
};
|
|
|
|
buildInputs = [ boost ];
|
|
|
|
nativeBuildInputs = [ extra-cmake-modules kdoctools wrapGAppsHook ];
|
|
|
|
propagatedBuildInputs = [ kconfig kcrash kinit kparts kiconthemes ];
|
|
|
|
cmakeFlags = [ "-Wno-dev" ];
|
|
|
|
meta = with lib; {
|
|
description = "Compares and merges 2 or 3 files or directories";
|
|
homepage = "https://invent.kde.org/sdk/kdiff3";
|
|
license = licenses.gpl2Plus;
|
|
maintainers = with maintainers; [ peterhoeg ];
|
|
platforms = with platforms; linux;
|
|
};
|
|
}
|