kde5.kio-extras: init at 15.12.0
This commit is contained in:
parent
e44af9ed42
commit
38ef49bacd
|
@ -41,6 +41,7 @@ let
|
||||||
kdegraphics-thumbnailers = callPackage ./kdegraphics-thumbnailers.nix {};
|
kdegraphics-thumbnailers = callPackage ./kdegraphics-thumbnailers.nix {};
|
||||||
kdenetwork-filesharing = callPackage ./kdenetwork-filesharing.nix {};
|
kdenetwork-filesharing = callPackage ./kdenetwork-filesharing.nix {};
|
||||||
kgpg = callPackage ./kgpg.nix { inherit (pkgs.kde4) kdepimlibs; };
|
kgpg = callPackage ./kgpg.nix { inherit (pkgs.kde4) kdepimlibs; };
|
||||||
|
kio-extras = callPackage ./kio-extras.nix {};
|
||||||
konsole = callPackage ./konsole.nix {};
|
konsole = callPackage ./konsole.nix {};
|
||||||
libkdcraw = callPackage ./libkdcraw.nix {};
|
libkdcraw = callPackage ./libkdcraw.nix {};
|
||||||
libkexiv2 = callPackage ./libkexiv2.nix {};
|
libkexiv2 = callPackage ./libkexiv2.nix {};
|
||||||
|
|
|
@ -0,0 +1,58 @@
|
||||||
|
{ kdeApp, lib
|
||||||
|
, extra-cmake-modules, kdoctools
|
||||||
|
, shared_mime_info
|
||||||
|
, exiv2
|
||||||
|
, karchive
|
||||||
|
, kbookmarks
|
||||||
|
, kconfig, kconfigwidgets
|
||||||
|
, kcoreaddons, kdbusaddons, kguiaddons
|
||||||
|
, kdnssd
|
||||||
|
, kiconthemes
|
||||||
|
, ki18n
|
||||||
|
, kio
|
||||||
|
, khtml
|
||||||
|
, kdelibs4support
|
||||||
|
, kpty
|
||||||
|
, libmtp
|
||||||
|
, libssh
|
||||||
|
, openexr
|
||||||
|
, openslp
|
||||||
|
, phonon
|
||||||
|
, qtsvg
|
||||||
|
, samba
|
||||||
|
, solid
|
||||||
|
}:
|
||||||
|
|
||||||
|
kdeApp {
|
||||||
|
name = "kio-extras";
|
||||||
|
nativeBuildInputs = [
|
||||||
|
extra-cmake-modules kdoctools
|
||||||
|
shared_mime_info
|
||||||
|
];
|
||||||
|
buildInputs = [
|
||||||
|
exiv2
|
||||||
|
karchive
|
||||||
|
kbookmarks
|
||||||
|
kconfig kconfigwidgets
|
||||||
|
kcoreaddons kdbusaddons kguiaddons
|
||||||
|
kdnssd
|
||||||
|
kiconthemes
|
||||||
|
ki18n
|
||||||
|
kio
|
||||||
|
khtml
|
||||||
|
kdelibs4support
|
||||||
|
kpty
|
||||||
|
libmtp
|
||||||
|
libssh
|
||||||
|
openexr
|
||||||
|
openslp
|
||||||
|
phonon
|
||||||
|
qtsvg
|
||||||
|
samba
|
||||||
|
solid
|
||||||
|
];
|
||||||
|
meta = {
|
||||||
|
license = with lib.licenses; [ gpl2 lgpl21 ];
|
||||||
|
maintainers = [ lib.maintainers.ttuegel ];
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in New Issue