mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-17 06:06:13 +03:00
ff1a94e523
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
21 lines
520 B
Nix
21 lines
520 B
Nix
{
|
|
mkDerivation, lib,
|
|
extra-cmake-modules, kdoctools,
|
|
kiconthemes, kparts, ktexteditor, kwidgetsaddons, libkomparediff2,
|
|
}:
|
|
|
|
mkDerivation {
|
|
pname = "kompare";
|
|
meta = {
|
|
homepage = "https://apps.kde.org/kompare/";
|
|
description = "Diff/patch frontend";
|
|
mainProgram = "kompare";
|
|
license = with lib.licenses; [ gpl2 ];
|
|
};
|
|
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
|
|
buildInputs = [
|
|
kiconthemes kparts ktexteditor kwidgetsaddons libkomparediff2
|
|
];
|
|
outputs = [ "out" "dev" ];
|
|
}
|