mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
44 lines
687 B
Nix
44 lines
687 B
Nix
{ lib
|
|
, mkDerivation
|
|
, cmake
|
|
, extra-cmake-modules
|
|
, karchive
|
|
, kconfig
|
|
, kcoreaddons
|
|
, kfilemetadata
|
|
, kguiaddons
|
|
, ki18n
|
|
, kiconthemes
|
|
, kio
|
|
, mauikit
|
|
, poppler
|
|
}:
|
|
|
|
mkDerivation {
|
|
pname = "mauikit-documents";
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
extra-cmake-modules
|
|
];
|
|
|
|
buildInputs = [
|
|
karchive
|
|
kconfig
|
|
kcoreaddons
|
|
kfilemetadata
|
|
kguiaddons
|
|
ki18n
|
|
kiconthemes
|
|
kio
|
|
mauikit
|
|
poppler
|
|
];
|
|
|
|
meta = {
|
|
homepage = "https://invent.kde.org/maui/mauikit-documents";
|
|
description = "MauiKit QtQuick plugins for text editing";
|
|
license = with lib.licenses; [ bsd2 lgpl21Plus ];
|
|
maintainers = with lib.maintainers; [ dotlambda ];
|
|
};
|
|
}
|