1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/applications/kde/okteta.nix

22 lines
541 B
Nix
Raw Normal View History

2017-02-02 01:26:17 +00:00
{
2017-05-16 16:56:41 +01:00
mkDerivation, lib,
2017-05-17 20:26:11 +01:00
extra-cmake-modules, kdoctools,
qtscript, kconfig, kinit, karchive,
kcmutils, kconfigwidgets, knewstuff, kparts, qca-qt5,
shared_mime_info
2017-02-02 01:26:17 +00:00
}:
2017-05-16 16:56:41 +01:00
mkDerivation {
name = "okteta";
meta = {
license = with lib.licenses; [ gpl2 ];
maintainers = with lib.maintainers; [ peterhoeg ];
};
nativeBuildInputs = [ qtscript extra-cmake-modules kdoctools ];
buildInputs = [ shared_mime_info ];
2017-05-16 16:56:41 +01:00
propagatedBuildInputs = [
2017-05-17 20:26:11 +01:00
kconfig kinit kcmutils kconfigwidgets knewstuff kparts qca-qt5
karchive
2017-05-16 16:56:41 +01:00
];
2017-02-02 01:26:17 +00:00
}