mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-19 02:44:17 +03:00
21 lines
717 B
Nix
21 lines
717 B
Nix
|
{
|
||
|
mkDerivation,
|
||
|
extra-cmake-modules, gettext, kdoctools, python,
|
||
|
appstream-qt, discount, flatpak, fwupd, ostree, packagekit-qt, pcre, utillinux,
|
||
|
qtquickcontrols2,
|
||
|
karchive, kconfig, kcrash, kdbusaddons, kdeclarative, kio, kirigami2, kitemmodels,
|
||
|
knewstuff, kwindowsystem, kxmlgui, plasma-framework
|
||
|
}:
|
||
|
|
||
|
mkDerivation {
|
||
|
name = "discover";
|
||
|
nativeBuildInputs = [ extra-cmake-modules gettext kdoctools python ];
|
||
|
buildInputs = [
|
||
|
# discount is needed for libmarkdown
|
||
|
appstream-qt discount flatpak fwupd ostree packagekit-qt pcre utillinux
|
||
|
qtquickcontrols2
|
||
|
karchive kconfig kcrash kdbusaddons kdeclarative kio kirigami2 kitemmodels knewstuff kwindowsystem kxmlgui
|
||
|
plasma-framework
|
||
|
];
|
||
|
}
|