mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-18 19:03:28 +00:00
kdewebkit: Add package expression
This is one of the requirements of KMyMoney and packaging is quite straightforward with no unexpected traps. Signed-off-by: aszlig <aszlig@nix.build> Cc: @ttuegel
This commit is contained in:
parent
6134887bef
commit
5370b8267c
@ -155,6 +155,7 @@ let
|
|||||||
kded = callPackage ./kded.nix {};
|
kded = callPackage ./kded.nix {};
|
||||||
kdesignerplugin = callPackage ./kdesignerplugin.nix {};
|
kdesignerplugin = callPackage ./kdesignerplugin.nix {};
|
||||||
kdesu = callPackage ./kdesu.nix {};
|
kdesu = callPackage ./kdesu.nix {};
|
||||||
|
kdewebkit = callPackage ./kdewebkit.nix {};
|
||||||
kemoticons = callPackage ./kemoticons.nix {};
|
kemoticons = callPackage ./kemoticons.nix {};
|
||||||
kglobalaccel = callPackage ./kglobalaccel.nix {};
|
kglobalaccel = callPackage ./kglobalaccel.nix {};
|
||||||
kiconthemes = callPackage ./kiconthemes {};
|
kiconthemes = callPackage ./kiconthemes {};
|
||||||
|
11
pkgs/development/libraries/kde-frameworks/kdewebkit.nix
Normal file
11
pkgs/development/libraries/kde-frameworks/kdewebkit.nix
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
{ mkDerivation, extra-cmake-modules
|
||||||
|
, kconfig, kcoreaddons, kio, kparts, qtwebkit
|
||||||
|
}:
|
||||||
|
|
||||||
|
mkDerivation {
|
||||||
|
name = "kdewebkit";
|
||||||
|
nativeBuildInputs = [ extra-cmake-modules ];
|
||||||
|
buildInputs = [ kconfig kcoreaddons kio kparts ];
|
||||||
|
propagatedBuildInputs = [ qtwebkit ];
|
||||||
|
outputs = [ "out" "dev" ];
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user